ce77225e21
This is the thing you want to look at.
26 lines
427 B
Nix
26 lines
427 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
|
|
];
|
|
}
|