mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
5dea877368
It is gettext-based, but is a library for run time, relying on the normal gettext tools at build time.
17 lines
326 B
Nix
17 lines
326 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, ki18n,
|
|
kcodecs, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kmime";
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcodecs ki18n qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|