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