about summary refs log tree commit diff
path: root/pkgs/development/libraries/popt/popt-1.7.nix
blob: 9ae06b0ed267aac0bdb1b21dd2b3c69c8afa1719 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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];
}