nixpkgs/pkgs/applications/kde/libkipi.nix

13 lines
364 B
Nix
Raw Normal View History

{ mkDerivation, lib, extra-cmake-modules, kconfig, ki18n, kservice, kxmlgui }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "libkipi";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
2017-06-21 13:52:04 +00:00
buildInputs = [ kconfig ki18n kservice kxmlgui ];
outputs = [ "out" "dev" ];
}