lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 13 lines 360 B view raw
1{ mkDerivation, lib, extra-cmake-modules, libraw, qtbase }: 2 3mkDerivation { 4 name = "libkdcraw"; 5 meta = { 6 license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; 7 maintainers = [ lib.maintainers.ttuegel ]; 8 }; 9 nativeBuildInputs = [ extra-cmake-modules ]; 10 buildInputs = [ qtbase ]; 11 propagatedBuildInputs = [ libraw ]; 12 outputs = [ "out" "dev" ]; 13}