summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyside/default.nix
blob: dc4f733a4cf0c992a397f8b9aeb48691a639c229 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchgit, cmake, pysideGeneratorrunner, pysideShiboken, qt4 }:

stdenv.mkDerivation {
  name = "pyside-1.0.9";

  src = fetchgit {
    url = "git://github.com/PySide/PySide.git";
    rev = "4e47b3284fd8715b68342e755cd06ba02b1df0de";
    sha256 = "1fd302e78c5dea8a9c312bd493c04240f2383517ee745d9df2b070f15f0ab515";
  };

  enableParallelBuilding = true;

  buildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ];

  makeFlags = "QT_PLUGIN_PATH=" + pysideShiboken + "/lib/generatorrunner";

  meta = {
    description = "LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
    license = stdenv.lib.licenses.lgpl21;
    homepage = "http://www.pyside.org";
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
    platforms = stdenv.lib.platforms.all;
  };
}