mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
Upgraded PyQt and dependencies to 4.5.4
svn path=/nixpkgs/trunk/; revision=17031
This commit is contained in:
parent
09920037c0
commit
bb4a7c5299
3 changed files with 22 additions and 10 deletions
|
@ -1,11 +1,16 @@
|
|||
{stdenv, fetchurl, python}:
|
||||
{stdenv, fetchurl, lib, python}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sip-4.7.9";
|
||||
name = "sip-4.8.2";
|
||||
src = fetchurl {
|
||||
url = http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.7.9.tar.gz;
|
||||
md5 = "597d7ff7edb42a18421c806ffd18a136";
|
||||
url = http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.8.2.tar.gz;
|
||||
sha256 = "1afr2qaibzgf8fq4fmc31jz9hvbwxbg5jvl68ygvkkdvnbg2kfrf";
|
||||
};
|
||||
configurePhase = "python ./configure.py -d $out/lib/python2.5/site-packages -b $out/bin -e $out/include";
|
||||
buildInputs = [ python ];
|
||||
meta = {
|
||||
description = "Creates C++ bindings for Python modules";
|
||||
license = "GPL";
|
||||
maintainers = [ lib.maintainers.sander ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue