nixpkgs/pkgs/development/libraries/popt/popt-1.7.nix

16 lines
356 B
Nix

{stdenv, fetchurl, gettext}:
assert gettext != null;
stdenv.mkDerivation {
name = "popt-1.7";
src = fetchurl {
urls = [
ftp://distro.ibiblio.org/pub/linux/distributions/pdaxrom/src/popt-1.7.tar.gz
http://nix.cs.uu.nl/dist/tarballs/popt-1.7.tar.gz
];
md5 = "5988e7aeb0ae4dac8d83561265984cc9";
};
buildInputs = [gettext];
}