summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMilan Pässler <me@pbb.lc>2019-07-26 14:27:01 +0200
committerMilan Pässler <me@pbb.lc>2019-07-26 14:51:43 +0200
commit583a82cb2f58f0dbf1b4ea0cd34265af96ff288d (patch)
tree09ba7dd3f0fcae3e4c5490aac08cc55ee64f05ee /pkgs
parentfcd940feb1b313da7f8b912214241a87c3512bde (diff)
downloadnixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar.gz
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar.bz2
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar.lz
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar.xz
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.tar.zst
nixpkgs-583a82cb2f58f0dbf1b4ea0cd34265af96ff288d.zip
nim: 0.20.0 -> 0.20.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/nim/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index 77d8710cdf9..4228c368e56 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -4,12 +4,12 @@
   boehmgc, sfml, tzdata, coreutils, sqlite }:
 
 stdenv.mkDerivation rec {
-  name = "nim-${version}";
-  version = "0.20.0";
+  pname = "nim";
+  version = "0.20.2";
 
   src = fetchurl {
-    url = "https://nim-lang.org/download/${name}.tar.xz";
-    sha256 = "144sd7icg2p6qsrr29jdnl11hr34daxq4h16ywwrayz866w7kx2i";
+    url = "https://nim-lang.org/download/${pname}-${version}.tar.xz";
+    sha256 = "0pibil10x0c181kw705phlwk8bn8dy5ghqd9h9fm6i9afrz5ryp1";
   };
 
   doCheck = !stdenv.isDarwin;
@@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Statically typed, imperative programming language";
-    homepage = https://nim-lang.org/;
+    homepage = "https://nim-lang.org/";
     license = licenses.mit;
     maintainers = with maintainers; [ ehmry peterhoeg ];
     platforms = with platforms; linux ++ darwin; # arbitrary