meli: Remove (#231509)

Uses openssl_1_1, which will be removed before the 23.05 branchoff, so
remove this.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>

authored by Matthias Beyer and committed by GitHub ac019b94 7818e35c

+1 -63
-59
pkgs/applications/networking/mailreaders/meli/default.nix
··· 1 - { stdenv 2 - , lib 3 - , fetchgit 4 - , rustPlatform 5 - , pkg-config 6 - , openssl 7 - , dbus 8 - , sqlite 9 - , file 10 - , makeWrapper 11 - , notmuch 12 - # Build with support for notmuch backend 13 - , withNotmuch ? true 14 - }: 15 - 16 - rustPlatform.buildRustPackage rec { 17 - pname = "meli"; 18 - version = "alpha-0.7.2"; 19 - 20 - src = fetchgit { 21 - url = "https://git.meli.delivery/meli/meli.git"; 22 - rev = version; 23 - sha256 = "sha256-cbigEJhX6vL+gHa40cxplmPsDhsqujkzQxe0Dr6+SK0="; 24 - }; 25 - 26 - cargoSha256 = "sha256-ZE653OtXyZ9454bKPApmuL2kVko/hGBWEAya1L1KIoc="; 27 - 28 - nativeBuildInputs = [ pkg-config makeWrapper ]; 29 - 30 - buildInputs = [ openssl dbus sqlite ] ++ lib.optional withNotmuch notmuch; 31 - 32 - nativeCheckInputs = [ file ]; 33 - 34 - buildFeatures = lib.optionals withNotmuch [ "notmuch" ]; 35 - 36 - postInstall = '' 37 - mkdir -p $out/share/man/man1 38 - gzip < docs/meli.1 > $out/share/man/man1/meli.1.gz 39 - mkdir -p $out/share/man/man5 40 - gzip < docs/meli.conf.5 > $out/share/man/man5/meli.conf.5.gz 41 - gzip < docs/meli-themes.5 > $out/share/man/man5/meli-themes.5.gz 42 - '' + lib.optionalString withNotmuch '' 43 - # Fixes this runtime error when meli is started with notmuch configured: 44 - # $ meli 45 - # libnotmuch5 was not found in your system. Make sure it is installed and 46 - # in the library paths. 47 - # notmuch is not a valid mail backend 48 - wrapProgram $out/bin/meli --set LD_LIBRARY_PATH ${notmuch}/lib 49 - ''; 50 - 51 - meta = with lib; { 52 - broken = (stdenv.isLinux && stdenv.isAarch64); 53 - description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults"; 54 - homepage = "https://meli.delivery"; 55 - license = licenses.gpl3; 56 - maintainers = with maintainers; [ _0x4A6F matthiasbeyer ]; 57 - platforms = platforms.linux; 58 - }; 59 - }
+1
pkgs/top-level/aliases.nix
··· 1020 1020 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # Added 2020-05-23 1021 1021 mcomix3 = mcomix; # Added 2022-06-05 1022 1022 mediatomb = throw "mediatomb is no longer maintained upstream, use gerbera instead"; # added 2022-01-04 1023 + meli = throw "'meli' has been removed as it requires an outdated version of openssl"; # added 2023-05-12 1023 1024 meme = meme-image-generator; # Added 2021-04-21 1024 1025 memtest86 = throw "'memtest86' has been renamed to/replaced by 'memtest86plus'"; # Converted to throw 2022-02-22 1025 1026 mercurial_4 = throw "mercurial_4 has been removed as it's unmaintained"; # Added 2021-10-18
-4
pkgs/top-level/all-packages.nix
··· 32160 32160 32161 32161 meld = callPackage ../applications/version-management/meld { }; 32162 32162 32163 - meli = callPackage ../applications/networking/mailreaders/meli { 32164 - openssl = openssl_1_1; 32165 - }; 32166 - 32167 32163 melmatcheq.lv2 = callPackage ../applications/audio/melmatcheq.lv2 { }; 32168 32164 32169 32165 melody = callPackage ../tools/misc/melody { };