mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
dfaa39db41
polkit-qt-1 is upgraded to the latest version, which supports Qt 5. The attributes are also renamed to differentiate the Qt 4 and Qt 5 branches. The prior naming scheme differentiated between polkit-qt-1 and polkit-qt, but we no longer package the latter.
23 lines
657 B
Nix
23 lines
657 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib
|
|
, qt4 ? null, qt5 ? null, withQt5 ? false }:
|
|
|
|
assert (withQt5 -> qt5 != null); assert (!withQt5 -> qt4 != null);
|
|
|
|
stdenv.mkDerivation {
|
|
name = "polkit-qt-1-0.112.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2";
|
|
sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake automoc4 pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ polkit glib (if withQt5 then qt5 else qt4) ];
|
|
|
|
meta = {
|
|
description = "A Qt wrapper around PolKit";
|
|
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
|
};
|
|
}
|