2005-09-01 18:38:31 +02:00
|
|
|
{stdenv, fetchurl, gettext}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "eject-2.1.0";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/eject-2.1.0.tar.gz;
|
2005-09-01 18:38:31 +02:00
|
|
|
md5 = "82e3a7a4d7e3323018c6938015ff25f7";
|
|
|
|
};
|
|
|
|
buildInputs = [gettext];
|
|
|
|
NIX_DEBUG=1;
|
|
|
|
patches = [./eject-destdir.patch];
|
|
|
|
}
|