nixpkgs/pkgs/os-specific/linux/eject/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

14 lines
317 B
Nix

{stdenv, fetchurl, gettext}:
stdenv.mkDerivation {
name = "eject-2.1.0";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/eject-2.1.0.tar.gz;
md5 = "82e3a7a4d7e3323018c6938015ff25f7";
};
buildInputs = [gettext];
NIX_DEBUG=1;
patches = [./eject-destdir.patch];
}