31cbd149d2
- Added SIP 4.10 required for pyqt-4.7.x - Removed kde libs experimental, which does not exists anymore in 4.4.0 svn path=/nixpkgs/trunk/; revision=19910
17 lines
547 B
Nix
17 lines
547 B
Nix
{stdenv, fetchurl, lib, python}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sip-4.10";
|
|
src = fetchurl {
|
|
url = http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.10.tar.gz;
|
|
sha256 = "15nnwn0x92iz5vh5d16dlqvxl56i8y4n4va53gc3f7z4d557d2nh";
|
|
};
|
|
configurePhase = "python ./configure.py -d $out/lib/${python.libPrefix}/site-packages -b $out/bin -e $out/include";
|
|
buildInputs = [ python ];
|
|
meta = {
|
|
description = "Creates C++ bindings for Python modules";
|
|
license = "GPL";
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|