mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
5e35fef0eb
I had to update all the pyside programs, or freecad failed to build. I picked the versions advertised in http://qt-project.org/wiki/PySideDownloads . The rest I took for github latest releases.
23 lines
795 B
Nix
23 lines
795 B
Nix
{ stdenv, fetchurl, cmake, pysideApiextractor, python27Packages, qt4 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pyside-generatorrunner-0.6.16";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/PySide/Generatorrunner/archive/0.6.16.tar.gz";
|
|
sha256 = "0vzk3cp0pfbhd921r8f1xkcz96znla39dhj074k623x9k26lj2sj";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ cmake pysideApiextractor python27Packages.sphinx qt4 ];
|
|
|
|
meta = {
|
|
description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = "http://www.pyside.org/docs/generatorrunner/";
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|