Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 386 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 qtbase, 6 qtdeclarative, 7}: 8 9mkDerivation { 10 pname = "kqtquickcharts"; 11 meta = { 12 license = with lib.licenses; [ 13 gpl2Plus 14 lgpl21Plus 15 fdl12Plus 16 ]; 17 maintainers = [ lib.maintainers.ttuegel ]; 18 }; 19 nativeBuildInputs = [ extra-cmake-modules ]; 20 propagatedBuildInputs = [ 21 qtbase 22 qtdeclarative 23 ]; 24}