Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #76519 from erictapen/meli-init

meli: init at alpha-0.5.1

authored by

Lassulus and committed by
GitHub
43fc4e0c 00c9983e

+52
+50
pkgs/applications/networking/mailreaders/meli/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchgit 4 + , rustPlatform 5 + , pkgconfig 6 + , openssl 7 + , dbus 8 + , sqlite 9 + , file 10 + , gzip 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.5.1"; 19 + 20 + src = fetchgit { 21 + url = "https://git.meli.delivery/meli/meli.git"; 22 + rev = version; 23 + sha256 = "1y5567hdm1s2s272drxvmp6x4y1jpyl7423iz58hgqcsjm9085zv"; 24 + }; 25 + 26 + cargoSha256 = "040dfr09bg5z5pn68dy323hcppd599d3f6k7zxqw5f8n4whnlc9y"; 27 + 28 + cargoBuildFlags = lib.optional withNotmuch "--features=notmuch"; 29 + 30 + nativeBuildInputs = [ pkgconfig gzip ]; 31 + 32 + buildInputs = [ openssl dbus sqlite ] ++ lib.optional withNotmuch notmuch; 33 + 34 + checkInputs = [ file ]; 35 + 36 + postInstall = '' 37 + mkdir -p $out/share/man/man1 38 + gzip < meli.1 > $out/share/man/man1/meli.1.gz 39 + mkdir -p $out/share/man/man5 40 + gzip < meli.conf.5 > $out/share/man/man5/meli.conf.5.gz 41 + ''; 42 + 43 + meta = with stdenv.lib; { 44 + description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults"; 45 + homepage = "https://meli.delivery"; 46 + license = licenses.gpl3; 47 + maintainers = with maintainers; [ maintainers."0x4A6F" matthiasbeyer erictapen ]; 48 + platforms = platforms.linux; 49 + }; 50 + }
+2
pkgs/top-level/all-packages.nix
··· 20868 20868 20869 20869 meld = callPackage ../applications/version-management/meld { }; 20870 20870 20871 + meli = callPackage ../applications/networking/mailreaders/meli { }; 20872 + 20871 20873 meme = callPackage ../applications/graphics/meme { }; 20872 20874 20873 20875 mendeley = libsForQt5.callPackage ../applications/office/mendeley {