- Completed all dependencies for kdelibs-4.4.0
- 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
This commit is contained in:
16
pkgs/development/python-modules/python-sip/4.10.nix
Normal file
16
pkgs/development/python-modules/python-sip/4.10.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user