mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
9 lines
193 B
Nix
9 lines
193 B
Nix
{ mkDerivation, extra-cmake-modules, qtbase }:
|
|
|
|
mkDerivation {
|
|
name = "kdecoration";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|