mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
new popt library. Versions > 1.7 are only distributed from within the RPM tarball, so I extracted it manually and put it on losser...not good.
svn path=/nixpkgs/trunk/; revision=6277
This commit is contained in:
parent
1730acf983
commit
ce1f654219
3 changed files with 25 additions and 12 deletions
|
@ -1,12 +1 @@
|
|||
{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];
|
||||
}
|
||||
import ./popt-1.7.nix
|
||||
|
|
12
pkgs/development/libraries/popt/popt-1.10.6.nix
Normal file
12
pkgs/development/libraries/popt/popt-1.10.6.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, gettext}:
|
||||
|
||||
assert gettext != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "popt-1.10.6";
|
||||
src = fetchurl {
|
||||
url = http://losser.st-lab.cs.uu.nl/~armijn/.nix/popt-1.10.6.tar.gz;
|
||||
md5 = "76b4bbcda13eb7fa86b9af893c648202";
|
||||
};
|
||||
buildInputs = [gettext];
|
||||
}
|
12
pkgs/development/libraries/popt/popt-1.7.nix
Normal file
12
pkgs/development/libraries/popt/popt-1.7.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{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];
|
||||
}
|
Loading…
Reference in a new issue