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

stdenv.mkDerivation {
  pname = "gnulib";
  version = "20190326";

  src = fetchgit {
    url = https://git.savannah.gnu.org/r/gnulib.git;
    rev = "a18f7ce3c0aa760c33d46bbeb8e5b3a14cf24984";
    sha256 = "04py5n3j17wyqv9wfsslcrxzapni9vmw6p5g0adzy2md3ygjw4x4";
  };

  dontFixup = true;
  # no "make install", gnulib is a collection of source code
  installPhase = ''
    mkdir -p $out; mv * $out/
    ln -s $out/lib $out/include
    mkdir -p $out/bin
    ln -s $out/gnulib-tool $out/bin/
  '';

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