croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / servers / computing / torque / default.nix
blob74b5fa8dd043eaed6875827eecc3592317042de3
2   lib,
3   stdenv,
4   fetchFromGitHub,
6   autoreconfHook,
7   pkg-config,
8   flex,
9   bison,
11   openssl,
12   groff,
13   libxml2,
14   util-linux,
15   libtool,
16   which,
17   coreutils,
18   boost,
19   zlib,
22 stdenv.mkDerivation {
23   pname = "torque";
24   version = "6.1.3h2";
26   src = fetchFromGitHub {
27     owner = "adaptivecomputing";
28     repo = "torque";
29     # branch 6.1.3h2, as they aren't pushing tags
30     # https://github.com/adaptivecomputing/torque/issues/467
31     rev = "458883319157cfc5c509046d09f9eb8e68e8d398";
32     sha256 = "1b56bc5j9wg87kcywzmhf7234byyrwax9v1pqsr9xmv2x7saakrr";
33   };
35   strictDeps = true;
37   nativeBuildInputs = [
38     autoreconfHook
39     pkg-config
40     flex
41     bison
42     libxml2
43   ];
45   buildInputs = [
46     openssl
47     groff
48     libxml2
49     util-linux
50     libtool
51     which
52     boost
53     zlib
54   ];
56   enableParallelBuilding = true;
58   # added to fix build with gcc7
59   env.NIX_CFLAGS_COMPILE = "-Wno-error -fpermissive";
61   postPatch = ''
62     substituteInPlace Makefile.am \
63       --replace-fail "contrib/init.d contrib/systemd" ""
64     substituteInPlace src/cmds/Makefile.am \
65       --replace-fail "/etc/" "$out/etc/"
66     substituteInPlace src/mom_rcp/pathnames.h \
67       --replace-fail /bin/cp ${coreutils}/bin/cp
68     substituteInPlace src/resmom/requests.c \
69       --replace-fail /bin/cp ${coreutils}/bin/cp
70   '';
72   preConfigure = ''
73     # fix broken libxml2 detection
74     sed -i '/xmlLib\=/c\xmlLib=xml2' ./configure
76     for s in fifo cray_t3e dec_cluster msic_cluster sgi_origin umn_cluster; do
77       substituteInPlace src/scheduler.cc/samples/$s/Makefile.in \
78         --replace-fail "schedprivdir = " "schedprivdir = $out/"
79     done
81     for f in $(find ./ -name Makefile.in); do
82       echo patching $f...
83       sed -i $f -e '/PBS_MKDIRS/d' -e '/chmod u+s/d'
84     done
86     patchShebangs buildutils
87   '';
89   postInstall = ''
90     install -Dm755 torque.setup buildutils/pbs_mkdirs -t $out/bin/
91   '';
93   meta = with lib; {
94     homepage = "http://www.adaptivecomputing.com/products/open-source/torque";
95     description = "Resource management system for submitting and controlling jobs on supercomputers, clusters, and grids";
96     platforms = platforms.linux;
97     license = "TORQUEv1.1";
98   };