nixpkgs/pkgs/development/libraries/kde-frameworks/kirigami2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
297 B
Nix
Raw Normal View History

{ mkDerivation, extra-cmake-modules, qtbase, qtquickcontrols2, qttranslations, qtgraphicaleffects }:
2017-10-11 05:29:30 +01:00
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "kirigami2";
2017-10-11 05:29:30 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase qtquickcontrols2 qttranslations qtgraphicaleffects ];
2017-10-11 05:29:30 +01:00
outputs = [ "out" "dev" ];
}