about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/plasma-firewall.nix
blob: e290b5ed0dc12f758cb0c3a19da09cb80ce4b4ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation
, extra-cmake-modules
, python3
, plasma-framework
, kcmutils
}:
mkDerivation {
  pname = "plasma-firewall";

  outputs = [ "out" ];

  nativeBuildInputs = [
    extra-cmake-modules
  ];

  buildInputs = [
    kcmutils
    plasma-framework
    python3
  ];
}