2004-01-21 10:34:19 +01:00
|
|
|
{stdenv, fetchurl, gettext}:
|
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert gettext != null;
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-01-21 10:34:19 +01:00
|
|
|
name = "popt-1.7";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/popt-1.7.tar.gz;
|
2004-01-21 10:34:19 +01:00
|
|
|
md5 = "5988e7aeb0ae4dac8d83561265984cc9";
|
|
|
|
};
|
|
|
|
gettext = gettext;
|
|
|
|
}
|