summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/meli/default.nix
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-05-12 22:36:49 +0200
committerGitHub <noreply@github.com>2023-05-12 22:36:49 +0200
commitac019b94fbd8376ecc9f01db3313b0b0bbea96d9 (patch)
tree92700c79cbdfecf94f30ed0ed2c20c9b56a50c96 /pkgs/applications/networking/mailreaders/meli/default.nix
parent7818e35cc0046fca0d65d75f205f09cbfb074735 (diff)
downloadnixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar.gz
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar.bz2
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar.lz
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar.xz
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.tar.zst
nixpkgs-ac019b94fbd8376ecc9f01db3313b0b0bbea96d9.zip
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>
Diffstat (limited to 'pkgs/applications/networking/mailreaders/meli/default.nix')
-rw-r--r--pkgs/applications/networking/mailreaders/meli/default.nix59
1 files changed, 0 insertions, 59 deletions
diff --git a/pkgs/applications/networking/mailreaders/meli/default.nix b/pkgs/applications/networking/mailreaders/meli/default.nix
deleted file mode 100644
index becc6193759..00000000000
--- a/pkgs/applications/networking/mailreaders/meli/default.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{ stdenv
-, lib
-, fetchgit
-, rustPlatform
-, pkg-config
-, openssl
-, dbus
-, sqlite
-, file
-, makeWrapper
-, notmuch
-  # Build with support for notmuch backend
-, withNotmuch ? true
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "meli";
-  version = "alpha-0.7.2";
-
-  src = fetchgit {
-    url = "https://git.meli.delivery/meli/meli.git";
-    rev = version;
-    sha256 = "sha256-cbigEJhX6vL+gHa40cxplmPsDhsqujkzQxe0Dr6+SK0=";
-  };
-
-  cargoSha256 = "sha256-ZE653OtXyZ9454bKPApmuL2kVko/hGBWEAya1L1KIoc=";
-
-  nativeBuildInputs = [ pkg-config makeWrapper ];
-
-  buildInputs = [ openssl dbus sqlite ] ++ lib.optional withNotmuch notmuch;
-
-  nativeCheckInputs = [ file ];
-
-  buildFeatures = lib.optionals withNotmuch [ "notmuch" ];
-
-  postInstall = ''
-    mkdir -p $out/share/man/man1
-    gzip < docs/meli.1 > $out/share/man/man1/meli.1.gz
-    mkdir -p $out/share/man/man5
-    gzip < docs/meli.conf.5 > $out/share/man/man5/meli.conf.5.gz
-    gzip < docs/meli-themes.5 > $out/share/man/man5/meli-themes.5.gz
-  '' + lib.optionalString withNotmuch ''
-    # Fixes this runtime error when meli is started with notmuch configured:
-    # $ meli
-    # libnotmuch5 was not found in your system. Make sure it is installed and
-    # in the library paths.
-    # notmuch is not a valid mail backend
-    wrapProgram $out/bin/meli --set LD_LIBRARY_PATH ${notmuch}/lib
-  '';
-
-  meta = with lib; {
-    broken = (stdenv.isLinux && stdenv.isAarch64);
-    description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults";
-    homepage = "https://meli.delivery";
-    license = licenses.gpl3;
-    maintainers = with maintainers; [ _0x4A6F matthiasbeyer ];
-    platforms = platforms.linux;
-  };
-}