2017-06-02 18:49:52 +03:00
|
|
|
{ mkDerivation, lib, extra-cmake-modules, libraw, qtbase }:
|
2016-04-21 19:00:51 +03:00
|
|
|
|
2017-06-02 18:49:52 +03:00
|
|
|
mkDerivation {
|
2016-04-21 19:00:51 +03:00
|
|
|
name = "libkdcraw";
|
2016-04-28 21:14:28 +03:00
|
|
|
meta = {
|
|
|
|
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
};
|
2017-02-26 15:49:15 +03:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
2016-07-30 05:13:00 +03:00
|
|
|
propagatedBuildInputs = [ libraw ];
|
2017-06-21 16:51:42 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-21 19:00:51 +03:00
|
|
|
}
|