nixpkgs/pkgs/applications/kde/kmime.nix

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

21 lines
472 B
Nix
Raw Normal View History

{
2017-06-21 13:39:02 +00:00
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, ki18n,
kcodecs, qtbase,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
2017-06-21 13:39:02 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcodecs ki18n qtbase ];
2017-06-21 13:50:47 +00:00
outputs = [ "out" "dev" ];
postInstall = ''
# added as an include directory by cmake files and fails to compile if it's missing
mkdir -p "$dev/include/KF5"
'';
}