about summary refs log tree commit diff
path: root/pkgs/development/compilers/nim
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2023-03-10 13:39:20 -0600
committerEmery Hemingway <ehmry@posteo.net>2023-03-19 18:35:05 -0500
commit31254120db53fe07d9f1f05fa8ff41af8feaac03 (patch)
treeba9a632bee7cc94ea28590ebf22e4da24d47e4a8 /pkgs/development/compilers/nim
parent2887b03d635fce105ebc33543e8b2a60d2c5d733 (diff)
downloadnixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar.gz
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar.bz2
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar.lz
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar.xz
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.tar.zst
nixlib-31254120db53fe07d9f1f05fa8ff41af8feaac03.zip
nim: 1.6.10 -> 1.6.12
Diffstat (limited to 'pkgs/development/compilers/nim')
-rw-r--r--pkgs/development/compilers/nim/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index bdd8022e69de..318a7ac34052 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -86,12 +86,12 @@ in {
 
   nim-unwrapped = stdenv.mkDerivation rec {
     pname = "nim-unwrapped";
-    version = "1.6.10";
+    version = "1.6.12";
     strictDeps = true;
 
     src = fetchurl {
       url = "https://nim-lang.org/download/nim-${version}.tar.xz";
-      hash = "sha256-E9dwL4tXCHur6M0FHBO8VqMXFBi6hntJxrvQmynST+o=";
+      hash = "sha256-rO8LCrdzYE1Nc5S2hRntt0+zD0aRIpSyi8J+DHtLTcI=";
     };
 
     buildInputs = [ boehmgc openssl pcre readline sqlite ];
@@ -153,14 +153,14 @@ in {
 
   nimble-unwrapped = stdenv.mkDerivation rec {
     pname = "nimble-unwrapped";
-    version = "0.13.1";
+    version = "0.14.2";
     strictDeps = true;
 
     src = fetchFromGitHub {
       owner = "nim-lang";
       repo = "nimble";
       rev = "v${version}";
-      sha256 = "1idb4r0kjbqv16r6bgmxlr13w2vgq5332hmnc8pjbxiyfwm075x8";
+      hash = "sha256-8b5yKvEl7c7wA/8cpdaN2CSvawQJzuRce6mULj3z/mI=";
     };
 
     depsBuildBuild = [ nim-unwrapped ];