summary refs log tree commit diff
path: root/pkgs/development/tools/gnulib/default.nix
blob: 2e5701375a4790f9b09602fcece084086fe80cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit }:

stdenv.mkDerivation {
  name = "gnulib-0.1-83-g8008cac";

  src = fetchgit {
    url = "http://git.savannah.gnu.org/r/gnulib.git";
    rev = "8008cac0568ee76a4a9b7002f839e1abbad78af6";
    sha256 = "1w8wh5ljh1qpssnj2lxizf45ggd7fgk5ggwhrnzjxxhn9m7rdvwm";
  };

  buildPhase = ":";

  installPhase = "mkdir -p $out; mv * $out/";

  meta = {
    homepage = "http://www.gnu.org/software/gnulib/";
    description = "central location for code to be shared among GNU packages";
    license = stdenv.lib.licenses.gpl3Plus;
  };
}