7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
26 lines
429 B
Nix
26 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
|
|
];
|
|
}
|