nixpkgs/pkgs/development/libraries/popt/default.nix
Eelco Dolstra 94fe7734fa * Glibc 2.3.6.
* GCC 3.4.5.
* Updated several other stdenv packages.
* Modified the builders of several packages to use the generic
  builder.

svn path=/nixpkgs/trunk/; revision=4336
2005-12-06 00:12:45 +00:00

13 lines
258 B
Nix

{stdenv, fetchurl, gettext}:
assert gettext != null;
stdenv.mkDerivation {
name = "popt-1.7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/popt-1.7.tar.gz;
md5 = "5988e7aeb0ae4dac8d83561265984cc9";
};
buildInputs = [gettext];
}