nixpkgs/pkgs/applications/kde/libkipi.nix
Thomas Tuegel 8be4bd7416
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
2017-02-27 11:49:30 -06:00

12 lines
300 B
Nix

{ kdeApp, lib, ecm, kconfig, ki18n, kservice, kxmlgui }:
kdeApp {
name = "libkipi";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [ kconfig ki18n kservice kxmlgui ];
}