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