1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/kmime.nix

17 lines
326 B
Nix
Raw Normal View History

{
2017-06-21 09:39:02 -04:00
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, ki18n,
kcodecs, qtbase,
}:
mkDerivation {
name = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
2017-06-21 09:39:02 -04:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcodecs ki18n qtbase ];
2017-06-21 09:50:47 -04:00
outputs = [ "out" "dev" ];
}