Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 330 B view raw
1{ 2 mkDerivation, 3 extra-cmake-modules, 4 qtbase, 5 qtquickcontrols2, 6 qtgraphicaleffects, 7 qttools, 8}: 9 10mkDerivation { 11 pname = "kirigami2"; 12 nativeBuildInputs = [ 13 extra-cmake-modules 14 qttools 15 ]; 16 buildInputs = [ 17 qtbase 18 qtquickcontrols2 19 qtgraphicaleffects 20 ]; 21 outputs = [ 22 "out" 23 "dev" 24 ]; 25}