mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
12 lines
344 B
Nix
12 lines
344 B
Nix
{ mkDerivation, lib, extra-cmake-modules, kconfig, ki18n, kservice, kxmlgui }:
|
|
|
|
mkDerivation {
|
|
name = "libkipi";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ kconfig ki18n kservice kxmlgui ];
|
|
}
|