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