nixpkgs/pkgs/development/libraries/popt/default.nix
Eelco Dolstra 2fcc5fdb08 * "!isNull x" -> "x != null". Done automatically. Hope nothing
broke.

svn path=/nixpkgs/trunk/; revision=870
2004-03-29 10:25:25 +00:00

16 lines
321 B
Nix

{stdenv, fetchurl, gettext}:
assert gettext != null;
derivation {
name = "popt-1.7";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/popt-1.7.tar.gz;
md5 = "5988e7aeb0ae4dac8d83561265984cc9";
};
stdenv = stdenv;
gettext = gettext;
}