mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
13 lines
193 B
Nix
13 lines
193 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, plasma-framework
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "plasma-nano";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
plasma-framework
|
|
];
|
|
}
|