2009-09-10 19:00:30 +02:00
|
|
|
{stdenv, fetchurl, lib, python}:
|
2009-02-25 17:05:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-09-30 11:54:14 +02:00
|
|
|
name = "sip-4.9";
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2009-09-30 11:54:14 +02:00
|
|
|
url = http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.9.tar.gz;
|
|
|
|
sha256 = "00ny3vj34pbykscp7jjk7qsy0ybx3lwzbw0nxq31r2xq51ayzplv";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
|
|
|
configurePhase = "python ./configure.py -d $out/lib/python2.5/site-packages -b $out/bin -e $out/include";
|
|
|
|
buildInputs = [ python ];
|
2009-09-10 19:00:30 +02:00
|
|
|
meta = {
|
|
|
|
description = "Creates C++ bindings for Python modules";
|
|
|
|
license = "GPL";
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
2009-02-25 17:05:13 +01:00
|
|
|
}
|