1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00
nixpkgs/pkgs/applications/kde/kmime.nix

16 lines
302 B
Nix
Raw Normal View History

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