Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 402 B view raw
1{ 2 mkDerivation, 3 lib, 4 exiv2, 5 extra-cmake-modules, 6 qtbase, 7}: 8 9mkDerivation { 10 pname = "libkexiv2"; 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 = [ exiv2 ]; 22 outputs = [ 23 "out" 24 "dev" 25 ]; 26}