mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +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
|
|
];
|
|
}
|