Skip to content

Commit

Permalink
claws-mail{,-gtk3}: set version for gtk3 to 3.99.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs124 committed Feb 19, 2021
1 parent bf92540 commit c2349bf
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};

Expand Down Expand Up @@ -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));

Expand Down

0 comments on commit c2349bf

Please sign in to comment.