ffcac187e8
I patched properly their own copy of cmake findqt4 module, the same way as we had to do in the cmake expression. The findqt4 patch we have is already filled in the cmake buglist, but it seems it is still not solved in in cmake 2.8.0 svn path=/nixpkgs/trunk/; revision=19960
16 lines
454 B
Nix
16 lines
454 B
Nix
{stdenv, fetchurl, cmake, qt4, policykit, automoc4, lib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "polkit-qt-0.9.3";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-0.9.3.tar.bz2;
|
|
sha256 = "08mz8p98nlxnxy1l751jg1010vgjq2f2d6n4cj27jvihqkpbaixn";
|
|
};
|
|
buildInputs = [ cmake qt4 policykit automoc4 ];
|
|
meta = {
|
|
description = "Qt PolicyKit bindings";
|
|
license = "LGPL";
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|