libsForQt5.polkit-qt: remove unused dependencies (#402346)

K900 5a1dd4fe a69ac51a

Changed files
+8 -20
pkgs
development
libraries
polkit-qt-1
+8 -20
pkgs/development/libraries/polkit-qt-1/default.nix
···
{
-
stdenv,
lib,
mkDerivation,
fetchurl,
···
pkg-config,
polkit,
glib,
-
pcre,
-
libselinux,
-
libsepol,
-
util-linux,
}:
mkDerivation rec {
···
version = "0.114.0";
src = fetchurl {
-
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
+
url = "mirror://kde/stable/polkit-qt-1/polkit-qt-1-${version}.tar.xz";
sha256 = "sha256-LrDyJEWIgpX/or+8DDaThHoPlzu2sMPkzOAhi+fjkH4=";
};
···
pkg-config
];
-
buildInputs =
-
[
-
glib
-
pcre
-
polkit
-
]
-
++ lib.optionals stdenv.hostPlatform.isLinux [
-
libselinux
-
libsepol
-
util-linux
-
];
+
buildInputs = [
+
glib
+
polkit
+
];
-
meta = with lib; {
+
meta = {
description = "Qt wrapper around PolKit";
-
maintainers = with maintainers; [ ttuegel ];
-
platforms = platforms.linux;
+
maintainers = with lib.maintainers; [ ttuegel ];
+
platforms = lib.platforms.linux;
};
}