tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nim: 1.6.10 -> 1.6.12
Emery Hemingway
2 years ago
31254120
2887b03d
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
nim
default.nix
+4
-4
pkgs/development/compilers/nim/default.nix
···
86
86
87
87
nim-unwrapped = stdenv.mkDerivation rec {
88
88
pname = "nim-unwrapped";
89
89
-
version = "1.6.10";
89
89
+
version = "1.6.12";
90
90
strictDeps = true;
91
91
92
92
src = fetchurl {
93
93
url = "https://nim-lang.org/download/nim-${version}.tar.xz";
94
94
-
hash = "sha256-E9dwL4tXCHur6M0FHBO8VqMXFBi6hntJxrvQmynST+o=";
94
94
+
hash = "sha256-rO8LCrdzYE1Nc5S2hRntt0+zD0aRIpSyi8J+DHtLTcI=";
95
95
};
96
96
97
97
buildInputs = [ boehmgc openssl pcre readline sqlite ];
···
153
153
154
154
nimble-unwrapped = stdenv.mkDerivation rec {
155
155
pname = "nimble-unwrapped";
156
156
-
version = "0.13.1";
156
156
+
version = "0.14.2";
157
157
strictDeps = true;
158
158
159
159
src = fetchFromGitHub {
160
160
owner = "nim-lang";
161
161
repo = "nimble";
162
162
rev = "v${version}";
163
163
-
sha256 = "1idb4r0kjbqv16r6bgmxlr13w2vgq5332hmnc8pjbxiyfwm075x8";
163
163
+
hash = "sha256-8b5yKvEl7c7wA/8cpdaN2CSvawQJzuRce6mULj3z/mI=";
164
164
};
165
165
166
166
depsBuildBuild = [ nim-unwrapped ];