ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
12 lines
364 B
Nix
12 lines
364 B
Nix
{ mkDerivation, lib, extra-cmake-modules, kconfig, ki18n, kservice, kxmlgui }:
|
|
|
|
mkDerivation {
|
|
pname = "libkipi";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kconfig ki18n kservice kxmlgui ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|