nixpkgs/pkgs/desktops/plasma-5/plasma-firewall.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
274 B
Nix
Raw Normal View History

2024-04-04 23:36:17 +00:00
{ mkDerivation
, extra-cmake-modules
, python3
, plasma-framework
, kcmutils
}:
mkDerivation {
pname = "plasma-firewall";
outputs = [ "out" ];
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kcmutils
plasma-framework
python3
];
}