1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/gnulib/default.nix

29 lines
757 B
Nix
Raw Normal View History

2013-03-24 22:32:14 +00:00
{ stdenv, fetchgit }:
stdenv.mkDerivation {
2019-03-26 20:41:54 +00:00
pname = "gnulib";
2019-08-12 10:38:00 +01:00
version = "20190811";
src = fetchgit {
2019-03-26 20:41:54 +00:00
url = https://git.savannah.gnu.org/r/gnulib.git;
2019-08-12 10:38:00 +01:00
rev = "6430babe47ece6953cf18ef07c1d8642c8588e89";
sha256 = "14kgykbjly03dlb25sllcfcrpk7zkypa449gr3zbqv4rhpmnzizg";
};
2018-02-26 21:27:39 +00:00
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;
};
}