mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
12 lines
176 B
Nix
12 lines
176 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "plasma-workspace-wallpapers";
|
|
outputs = [ "out" ];
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
}
|