mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
22 lines
274 B
Nix
22 lines
274 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, python3
|
||
|
, plasma-framework
|
||
|
, kcmutils
|
||
|
}:
|
||
|
mkDerivation {
|
||
|
pname = "plasma-firewall";
|
||
|
|
||
|
outputs = [ "out" ];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
kcmutils
|
||
|
plasma-framework
|
||
|
python3
|
||
|
];
|
||
|
}
|