Commit Graph

9 Commits

Author SHA1 Message Date
Erlend Hamberg
edf127d95b
meli: 0.8.8 -> 0.8.9
https://git.meli-email.org/meli/meli/releases/tag/v0.8.9
2024-11-27 20:31:54 +01:00
Erlend Hamberg
60ee8fb18c meli: 0.8.7 -> 0.8.8 2024-11-20 23:13:58 +01:00
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
Dennis Schridde
e9df614744
meli: 0.8.6 -> 0.8.7
Release notes: https://git.meli-email.org/meli/meli/releases/tag/v0.8.7

Include Cargo.lock patch to allow building with Rust 1.80,
cf. https://github.com/NixOS/nixpkgs/issues/332957#issuecomment-2278578811
and 6b05279a09

Closes: https://github.com/NixOS/nixpkgs/issues/338191
2024-08-30 19:55:23 +02:00
euxane
ba07824533 meli: 0.8.5 -> 0.8.6
Changelog: https://git.meli-email.org/meli/meli/releases/tag/v0.8.6
2024-06-15 18:49:41 +02:00
euxane
195fa9872c meli: add gpgme to runtime lib path
Meli looks for libgpgme at runtime to handle message encryption and
decryption.

This patch solves the error:

    Decryption failed: libgpgme.so: cannot open shared object file:
    No such file or directory

GitHub: closes https://github.com/NixOS/nixpkgs/issues/174767
2024-06-04 17:02:18 +02:00
R. Ryantm
21f831e62f meli: 0.8.4 -> 0.8.5 2024-05-07 01:46:29 +00:00
toastal
b285b744ac meli: support mirrors
Servers go down. We can support mirrors for resilience.
2024-05-03 01:15:19 +07:00
toastal
e44a9cc1b6 meli: mv to by-name 2024-05-03 01:15:03 +07:00