mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 01:51:24 +00:00
7 lines
128 B
Nix
7 lines
128 B
Nix
|
{ mkDerivation, extra-cmake-modules }:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kdecoration";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
}
|