summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-02-19 17:56:11 +0100
committerajs124 <git@ajs124.de>2021-02-19 17:56:11 +0100
commitc2349bf052456733017396696286627fd061a800 (patch)
tree33db360ee13663258ad3e1b5002f9506997080ef /pkgs/applications/networking
parentbf925400978d361e62f9d5210a6e5d620d2be050 (diff)
downloadnixpkgs-c2349bf052456733017396696286627fd061a800.tar
nixpkgs-c2349bf052456733017396696286627fd061a800.tar.gz
nixpkgs-c2349bf052456733017396696286627fd061a800.tar.bz2
nixpkgs-c2349bf052456733017396696286627fd061a800.tar.lz
nixpkgs-c2349bf052456733017396696286627fd061a800.tar.xz
nixpkgs-c2349bf052456733017396696286627fd061a800.tar.zst
nixpkgs-c2349bf052456733017396696286627fd061a800.zip
claws-mail{,-gtk3}: set version for gtk3 to 3.99.0
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/claws-mail/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
index 3d28300affc..a9cea58902a 100644
--- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix
+++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix
@@ -56,17 +56,15 @@
 with lib;
 
 let
-  version = "3.17.8";
+  version = if useGtk3 then "3.99.0" else "3.17.8";
 
   # The official release uses gtk2 and contains the version tag.
   gtk2src = {
-    rev = version;
     sha256 = "0l4f8q11iyj8pi120lrapgq51k5j64xf0jlczkzbm99rym752ch5";
   };
 
   # The corresponding commit in the gtk3 branch.
   gtk3src = {
-    rev = "3.99.0";
     sha256 = "176h1swh1zx6dqyzfz470x4a1xicnv0zhy8ir47k7p23g6y17i2k";
   };
 
@@ -119,6 +117,7 @@ in stdenv.mkDerivation rec {
   inherit version;
 
   src = fetchgit ({
+    rev = version;
     url = "git://git.claws-mail.org/claws.git";
   } // (if useGtk3 then gtk3src else gtk2src));