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