mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #301683 from quentinmit/plasma-firewall
This commit is contained in:
commit
e74b3c5995
@ -151,6 +151,7 @@ let
|
||||
plasma-browser-integration = callPackage ./plasma-browser-integration.nix { };
|
||||
plasma-desktop = callPackage ./plasma-desktop { };
|
||||
plasma-disks = callPackage ./plasma-disks.nix { };
|
||||
plasma-firewall = callPackage ./plasma-firewall.nix { };
|
||||
plasma-integration = callPackage ./plasma-integration { };
|
||||
plasma-mobile = callPackage ./plasma-mobile { };
|
||||
plasma-nano = callPackage ./plasma-nano { };
|
||||
|
21
pkgs/desktops/plasma-5/plasma-firewall.nix
Normal file
21
pkgs/desktops/plasma-5/plasma-firewall.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ mkDerivation
|
||||
, extra-cmake-modules
|
||||
, python3
|
||||
, plasma-framework
|
||||
, kcmutils
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "plasma-firewall";
|
||||
|
||||
outputs = [ "out" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kcmutils
|
||||
plasma-framework
|
||||
python3
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user