nixpkgs/pkgs/applications/kde/kmime.nix
2017-06-18 08:42:20 -05:00

16 lines
286 B
Nix

{
mkDerivation, lib,
extra-cmake-modules, ki18n,
kcodecs
}:
mkDerivation {
name = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ki18n ];
buildInputs = [ kcodecs ];
}