mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
4290be9a99
svn path=/nixpkgs/trunk/; revision=9952
15 lines
356 B
Nix
15 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];
|
|
}
|