2017-06-02 16:49:52 +01:00
|
|
|
{ mkDerivation, lib, exiv2, extra-cmake-modules, qtbase }:
|
2016-04-21 17:00:51 +01:00
|
|
|
|
2017-06-02 16:49:52 +01:00
|
|
|
mkDerivation {
|
2016-04-21 17:00:51 +01:00
|
|
|
name = "libkexiv2";
|
2016-04-28 19:14:59 +01: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 03:13:00 +01:00
|
|
|
propagatedBuildInputs = [ exiv2 ];
|
2016-04-21 17:00:51 +01:00
|
|
|
}
|