mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
27 lines
429 B
Nix
27 lines
429 B
Nix
{
|
|
mkKdeDerivation,
|
|
substituteAll,
|
|
pkg-config,
|
|
qtwebengine,
|
|
mobile-broadband-provider-info,
|
|
openconnect,
|
|
openvpn,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-nm";
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0002-openvpn-binary-path.patch;
|
|
inherit openvpn;
|
|
})
|
|
];
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtwebengine
|
|
mobile-broadband-provider-info
|
|
openconnect
|
|
];
|
|
}
|