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