nixpkgs/pkgs/development/libraries/gmime/3.nix
Artturin e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00

87 lines
1.9 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
glib,
zlib,
gnupg,
gpgme,
libidn2,
libunistring,
gobject-introspection,
vala,
}:
stdenv.mkDerivation rec {
version = "3.2.15";
pname = "gmime";
src = fetchurl {
# https://github.com/jstedfast/gmime/releases
url = "https://github.com/jstedfast/gmime/releases/download/${version}/gmime-${version}.tar.xz";
sha256 = "sha256-hM0qSBonlw7Dm1yV9y2wJnIpBKLM8/29V7KAzy0CtcQ=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
pkg-config
gobject-introspection
vala
];
buildInputs = [
zlib
gpgme
libidn2
libunistring
vala # for share/vala/Makefile.vapigen
];
propagatedBuildInputs = [ glib ];
configureFlags =
[
"--enable-introspection=yes"
"--enable-vala=yes"
]
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "ac_cv_have_iconv_detect_h=yes" ];
postPatch =
''
substituteInPlace tests/testsuite.c \
--replace /bin/rm rm
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
# This specific test fails on darwin for some unknown reason
substituteInPlace tests/test-filters.c \
--replace-fail 'test_charset_conversion (datadir, "japanese", "utf-8", "iso-2022-jp");' ""
'';
preConfigure =
''
PKG_CONFIG_VAPIGEN_VAPIGEN="$(type -p vapigen)"
export PKG_CONFIG_VAPIGEN_VAPIGEN
''
+ lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
cp ${
if stdenv.hostPlatform.isMusl then ./musl-iconv-detect.h else ./iconv-detect.h
} ./iconv-detect.h
'';
nativeCheckInputs = [ gnupg ];
doCheck = true;
enableParallelBuilding = true;
meta = {
homepage = "https://github.com/jstedfast/gmime/";
description = "C/C++ library for creating, editing and parsing MIME messages and structures";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
platforms = lib.platforms.unix;
};
}