about summary refs log tree commit diff
path: root/pkgs/applications/version-management/smartgithg/default.nix
diff options
context:
space:
mode:
authorHerman Fries <baracoder@googlemail.com>2019-01-17 14:14:45 +0100
committerHerman Fries <baracoder@googlemail.com>2019-01-28 14:42:27 +0100
commite036a3d61635bd7241f5f2485f2c3ad5022f24b2 (patch)
treefa8dea459aadaf68ce3a8ce3f25d474a70c10d28 /pkgs/applications/version-management/smartgithg/default.nix
parent088cb13aee074fb48d104222cb80fb552ec17529 (diff)
smartgithg: 18_1_5 -> 18.2.4
This PR is committed using the new version.
The never version requires JRE 10, actually the changelog mentions
downgrading from JDK11 to 10 because of a bug related to https
but this seams to be fixed by now
https://bugs.openjdk.java.net/browse/JDK-8210005

Also I did not find a `jre` output in jdk11, so the closure size
might increase due to it.
Diffstat (limited to 'pkgs/applications/version-management/smartgithg/default.nix')
-rw-r--r--pkgs/applications/version-management/smartgithg/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix
index d6ae37c3f7faa..213820918013d 100644
--- a/pkgs/applications/version-management/smartgithg/default.nix
+++ b/pkgs/applications/version-management/smartgithg/default.nix
@@ -7,11 +7,11 @@
 
 stdenv.mkDerivation rec {
   name = "smartgithg-${version}";
-  version = "18_1_5";
+  version = "18.2.4";
 
   src = fetchurl {
-    url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${version}.tar.gz";
-    sha256 = "0f2aj3259jvn7n0x6m8sbwliikln9lqffd00jg75dblhxwl8adg3";
+    url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.gz";
+    sha256 = "0ch6vcvndn1fpx05ym9yp2ssfw2af6ac0pw8ssvjkc676zc0jr73";
   };
 
   nativeBuildInputs = [ makeWrapper ];