mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
23 lines
340 B
Nix
23 lines
340 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, ki18n
|
|
, kservice
|
|
, kxmlgui
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "libkipi";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kconfig ki18n kservice kxmlgui
|
|
];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|