Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 36 lines 391 B view raw
1{ 2 mkDerivation, 3 lib, 4 bison, 5 extra-cmake-modules, 6 flex, 7 kholidays, 8 ki18n, 9}: 10 11mkDerivation { 12 pname = "kopeninghours"; 13 outputs = [ 14 "out" 15 "dev" 16 ]; 17 18 nativeBuildInputs = [ 19 bison 20 extra-cmake-modules 21 flex 22 ]; 23 24 buildInputs = [ 25 kholidays 26 ki18n 27 ]; 28 29 meta = { 30 license = with lib.licenses; [ 31 bsd3 32 cc0 33 lgpl2Plus 34 ]; 35 }; 36}