5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
8 lines
283 B
Nix
8 lines
283 B
Nix
{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qtgraphicaleffects, qttools }:
|
|
|
|
mkDerivation {
|
|
pname = "kirigami2";
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|