nixpkgs/pkgs/development/tools/gnulib/default.nix

22 lines
548 B
Nix
Raw Normal View History

2013-03-24 23:32:14 +01:00
{ stdenv, fetchgit }:
stdenv.mkDerivation {
name = "gnulib-0.0-7952-g439b0e9";
src = fetchgit {
url = "http://git.savannah.gnu.org/r/gnulib.git";
rev = "439b0e925f9ffb6fe58481717def708af96a9321";
sha256 = "0xvnqn3323w0wnd1p7dhkcd4mihfh2dby88kv2dsclszppd9g4dc";
};
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;
};
}