2006-08-27 21:59:23 +02:00
|
|
|
{stdenv, fetchurl, gettext, libtool, autoconf, automake}:
|
2006-08-27 20:57:12 +02:00
|
|
|
|
|
|
|
assert gettext != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-08-27 21:59:23 +02:00
|
|
|
builder = ./builder-1.10.6.sh;
|
2006-08-27 20:57:12 +02:00
|
|
|
name = "popt-1.10.6";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://losser.st-lab.cs.uu.nl/~armijn/.nix/popt-1.10.6.tar.gz;
|
2006-08-27 21:59:23 +02:00
|
|
|
md5 = "130ee632bd4c677d898b0ef5efa67666";
|
2006-08-27 20:57:12 +02:00
|
|
|
};
|
2006-08-27 21:59:23 +02:00
|
|
|
buildInputs = [gettext libtool automake autoconf];
|
2006-08-27 20:57:12 +02:00
|
|
|
}
|