about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-02-01 12:50:10 +0100
committerFlorian Klink <flokli@flokli.de>2020-02-01 23:38:36 +0100
commitfe08bffe4c2b984487f6cc1bb987d26efc88980d (patch)
tree26ae7e02ca4bb8af71f11199467a2cf08f6b375f /pkgs/applications/networking/mailreaders
parent4afad26f79e1572bd0f5ad175e9440db15f02965 (diff)
downloadnixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar.gz
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar.bz2
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar.lz
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar.xz
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.tar.zst
nixlib-fe08bffe4c2b984487f6cc1bb987d26efc88980d.zip
aerc: 0.3.0 -> unstable-2020-02-01
The current version seems to go panic on some mail boxes.

It's already fixed in master, but there hasn't been a release yet.
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/aerc/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/applications/networking/mailreaders/aerc/default.nix b/pkgs/applications/networking/mailreaders/aerc/default.nix
index 6915cfd79821..0fa30a85d1b6 100644
--- a/pkgs/applications/networking/mailreaders/aerc/default.nix
+++ b/pkgs/applications/networking/mailreaders/aerc/default.nix
@@ -3,15 +3,19 @@
 , python3, perl, w3m, dante
 }:
 
-buildGoModule rec {
+let
+  rev = "ea0df7bee433fedae5716906ea56141f92b9ce53";
+in buildGoModule rec {
   pname = "aerc";
-  version = "0.3.0";
+  version = "unstable-2020-02-01";
 
   src = fetchurl {
-    url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
-    sha256 = "188jln8hmgiqn5il5m54bns0wk4grj09di8y6mmid58ibw6spma4";
+    url = "https://git.sr.ht/~sircmpwn/aerc/archive/${rev}.tar.gz";
+    sha256 = "1bx2fypw053v3bzalfgyi6a0s5fvv040z8jy4i63s7p53m8gmzs9";
   };
 
+  modSha256 = "127xrah6xxrvc224g5dxn432sagrssx8v7phzapcsdajsnmagq6x";
+
   nativeBuildInputs = [
     go
     scdoc
@@ -51,8 +55,6 @@ buildGoModule rec {
       ${stdenv.lib.makeBinPath [ w3m dante ]}
   '';
 
-  modSha256 = "0pxbv4zfhii0g41cy0ycfpkkxw6nnd4ibavic6zqw30j476jnm2x";
-
   meta = with stdenv.lib; {
     description = "aerc is an email client for your terminal";
     homepage = https://aerc-mail.org/;