forked from mirrors/nixpkgs
pth added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10189
This commit is contained in:
parent
fa5891aa62
commit
1ba2194228
14
pkgs/development/libraries/pth/default.nix
Normal file
14
pkgs/development/libraries/pth/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pth-2.0.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/pth/${name}.tar.gz";
|
||||
sha256 = "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "The GNU Portable Threads";
|
||||
homepage = http://www.gnu.org/software/pth;
|
||||
};
|
||||
}
|
|
@ -2354,6 +2354,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
pth = import ../development/libraries/pth {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
qt3 = import ../development/libraries/qt-3 {
|
||||
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql mesa;
|
||||
inherit (xlibs) xextproto libXft libXrender libXrandr randrproto
|
||||
|
|
Loading…
Reference in a new issue