bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
8 lines
297 B
Nix
8 lines
297 B
Nix
{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qttranslations, qtgraphicaleffects }:
|
|
|
|
mkDerivation {
|
|
pname = "kirigami2";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase qtquickcontrols2 qttranslations qtgraphicaleffects ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|