evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / applications / science / math / hmetis / default.nix
blobc8bacea5acb707794830b0b6c51fe98aaa9507da
2   lib,
3   stdenv,
4   fetchurl,
5   ghostscript,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "hmetis";
10   version = "1.5";
12   src = fetchurl {
13     url = "http://glaros.dtc.umn.edu/gkhome/fetch/sw/hmetis/hmetis-${version}-linux.tar.gz";
14     sha256 = "e835a098c046e9c26cecb8addfea4d18ff25214e49585ffd87038e72819be7e1";
15   };
17   nativeBuildInputs = [ ghostscript ];
19   binaryFiles = "hmetis khmetis shmetis";
21   patchPhase = ''
22     for binaryfile in $binaryFiles; do
23       patchelf \
24         --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 \
25         --set-rpath ${stdenv.cc.libc}/lib \
26         $binaryfile
27     done
28   '';
30   buildPhase = ''
31     gs -sOutputFile=manual.pdf -sDEVICE=pdfwrite -SNOPAUSE -dBATCH manual.ps
32   '';
34   installPhase = ''
35     mkdir -p $out/bin $out/share/doc/hmetis $out/lib
36     mv $binaryFiles $out/bin
37     mv manual.pdf $out/share/doc/hmetis
38     mv libhmetis.a $out/lib
39   '';
41   meta = with lib; {
42     description = "hMETIS is a set of programs for partitioning hypergraphs";
43     homepage = "http://glaros.dtc.umn.edu/gkhome/metis/hmetis/overview";
44     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
45     license = licenses.unfree;
46     platforms = [
47       "i686-linux"
48       "x86_64-linux"
49     ];
50   };