nixpkgs/pkgs/applications/kde/kmime.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
385 B
Nix
Raw Normal View History

{
2017-06-21 15:39:02 +02:00
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, ki18n,
kcodecs, qtbase,
}:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
2017-06-21 15:39:02 +02:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcodecs ki18n qtbase ];
2017-06-21 15:50:47 +02:00
outputs = [ "out" "dev" ];
2020-12-05 19:42:22 +01:00
meta.broken = lib.versionOlder qtbase.version "5.15.0";
}