Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 317 B view raw
1{ 2 mkKdeDerivation, 3 qtdeclarative, 4 bison, 5 flex, 6 boost, 7 python3, 8}: 9mkKdeDerivation { 10 pname = "kopeninghours"; 11 12 extraNativeBuildInputs = [ 13 bison 14 flex 15 ]; 16 extraBuildInputs = [ 17 qtdeclarative 18 (boost.override { 19 enablePython = true; 20 python = python3; 21 }) 22 python3 23 ]; 24}