mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
16 lines
212 B
Nix
16 lines
212 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtlocation,
|
|
plasma-nm,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-setup";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtlocation
|
|
plasma-nm
|
|
];
|
|
}
|