nixpkgs/pkgs/kde/misc/polkit-qt-1/default.nix
K900 ce77225e21 pkgs/kde: init at 6.0.0 / 24.02.0, the Nix bits
This is the thing you want to look at.
2024-02-28 18:49:23 +03:00

24 lines
492 B
Nix

{
mkKdeDerivation,
lib,
fetchurl,
pkg-config,
polkit,
glib,
}:
mkKdeDerivation rec {
pname = "polkit-qt-1";
version = "0.200.0";
src = fetchurl {
url = "mirror://kde/stable/polkit-qt-1/polkit-qt-1-${version}.tar.xz";
sha256 = "sha256-XTthHAYtK3apN1C7EMkHv9IdH/CNChXcLPY+J44Wd/s=";
};
patches = [./full-paths.patch];
extraNativeBuildInputs = [pkg-config];
extraBuildInputs = [glib polkit];
meta.license = with lib.licenses; [bsd3 gpl2Plus lgpl2Plus];
}