linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / shells / dgsh / default.nix
blob7a6ae67c3ae89b43b73b66fb1522d6a943ddb6fa
1 { lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config,
2   libtool, check, bison, git, gperf,
3   perl, texinfo, help2man, gettext, ncurses
4 }:
6 stdenv.mkDerivation {
7   pname = "dgsh-unstable";
8   version = "2017-02-05";
10   src = fetchFromGitHub {
11     owner = "dspinellis";
12     repo = "dgsh";
13     rev = "bc4fc2e8009c069ee4df5140c32a2fc15d0acdec";
14     sha256 = "0k3hmnarz56wphw45mabn5zcc427l5p77jldh1qqy89pxqy1wnql";
15     fetchSubmodules = true;
16   };
18   patches = [ ./glibc-2.26.patch ];
20   nativeBuildInputs = [ autoconf automake pkg-config libtool check
21     bison git gettext gperf perl texinfo help2man ncurses
22   ];
24   configurePhase = ''
25     cp -r ./unix-tools/coreutils/gnulib gnulib
26     perl -pi -e \
27       's#./bootstrap #./bootstrap --no-bootstrap-sync --skip-po --no-git --gnulib-srcdir='$PWD/gnulib' #g' \
28       unix-tools/Makefile
29     find . -name \*.diff | xargs rm -f
30     rm -rf unix-tools/*/gnulib
31     patchShebangs unix-tools/diffutils/man/help2man
32     export RSYNC=true # set to rsync binary, eventhough it is not used.
33     make PREFIX=$out config
34   '';
36   enableParallelBuilding = true;
38   meta = with lib; {
39     description = "The Directed Graph Shell";
40     homepage = "http://www.dmst.aueb.gr/dds/sw/dgsh";
41     license = with licenses; asl20;
42     maintainers = with maintainers; [ vrthra ];
43     platforms = with platforms; all;
44   };