nixpkgs/pkgs/os-specific/linux/initscripts/default.nix
Eelco Dolstra 9f898a586b * Copy even more files (in particular from losser.st-lab.cs.uu.nl,
can't assume that it will live forever).

svn path=/nixpkgs/trunk/; revision=4624
2006-01-30 16:11:00 +00:00

13 lines
342 B
Nix

{stdenv, fetchurl, popt, pkgconfig, glib}:
stdenv.mkDerivation {
name = "initscripts-8.18";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/initscripts-8.18.tar.bz2;
md5 = "1b89ac4d344f1f20fe5022a198b69915";
};
buildInputs = [popt pkgconfig glib];
patches = [./initscripts-8.18.patch];
}