about summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet
diff options
context:
space:
mode:
authorHerman Fries <h.fries@nyris.io>2018-10-23 15:49:20 +0200
committerHerman Fries <h.fries@nyris.io>2018-10-23 15:49:20 +0200
commite74b79709a974c6c4d6941a92322ff55452dcabf (patch)
tree912988b33d55151bbdae998a3ab0ef73f2676f6a /pkgs/development/compilers/dotnet
parente37892744f4ee0b938400b691b7de671042fd391 (diff)
downloadnixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar.gz
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar.bz2
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar.lz
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar.xz
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.tar.zst
nixlib-e74b79709a974c6c4d6941a92322ff55452dcabf.zip
dotnet-sdk: 2.1.402 -> 2.1.403
Diffstat (limited to 'pkgs/development/compilers/dotnet')
-rw-r--r--pkgs/development/compilers/dotnet/sdk/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/dotnet/sdk/default.nix b/pkgs/development/compilers/dotnet/sdk/default.nix
index eb7a1e737193..9970fd9b33d3 100644
--- a/pkgs/development/compilers/dotnet/sdk/default.nix
+++ b/pkgs/development/compilers/dotnet/sdk/default.nix
@@ -12,14 +12,14 @@ let
   rpath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc libunwind libuuid icu openssl zlib curl ];
 in
   stdenv.mkDerivation rec {
-    version = "2.1.402";
-    netCoreVersion = "2.1.4";
+    version = "2.1.403";
+    netCoreVersion = "2.1.5";
     name = "dotnet-sdk-${version}";
 
     src = fetchurl {
       url = "https://dotnetcli.azureedge.net/dotnet/Sdk/${version}/dotnet-sdk-${version}-linux-x64.tar.gz";
       # use sha512 from the download page
-      sha512 = "dd7f15a8202ffa2a435b7289865af4483bb0f642ffcf98a1eb10464cb9c51dd1d771efbb6120f129fe9666f62707ba0b7c476cf1fd3536d3a29329f07456de48";
+      sha512 = "903a8a633aea9211ba36232a2decb3b34a59bb62bc145a0e7a90ca46dd37bb6c2da02bcbe2c50c17e08cdff8e48605c0f990786faf1f06be1ea4a4d373beb8a9";
     };
 
     unpackPhase = ''