mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +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
|
|
];
|
|
}
|