2014-08-01 12:50:09 +01:00
|
|
|
{ stdenv, fetchurl, cmake, pyside, python27, qt4, pysideShiboken }:
|
2011-12-17 20:16:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-08-01 12:50:09 +01:00
|
|
|
name = "pyside-tools-0.2.15";
|
2011-12-17 20:16:45 +00:00
|
|
|
|
2014-08-01 12:50:09 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
|
|
|
|
sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
|
2011-12-17 20:16:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildInputs = [ cmake pyside python27 qt4 pysideShiboken ];
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
|
2011-12-17 20:16:45 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
homepage = "http://www.pyside.org";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|