about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2020-06-17 14:11:47 +0200
committerGitHub <noreply@github.com>2020-06-17 14:11:47 +0200
commitc0574ae3210d980c972e13e862aac3f8eecf3293 (patch)
tree1aadc81a3c9dd797650a1b4a81b3ed2a450f5692 /pkgs
parenta866a6b7f09997a98722fef3592404431ae782dd (diff)
parent0a2b461959c95076c3957f8e40c616efe1ef94e4 (diff)
downloadnixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar.gz
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar.bz2
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar.lz
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar.xz
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.tar.zst
nixlib-c0574ae3210d980c972e13e862aac3f8eecf3293.zip
Merge pull request #90472 from cdepillabout/purescript-0.13.8
purescript: 0.13.6 -> 0.13.8
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/purescript/purescript/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/purescript/purescript/default.nix b/pkgs/development/compilers/purescript/purescript/default.nix
index 6f61068738af..8a7fb96723a7 100644
--- a/pkgs/development/compilers/purescript/purescript/default.nix
+++ b/pkgs/development/compilers/purescript/purescript/default.nix
@@ -18,19 +18,19 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "purescript";
-  version = "0.13.6";
+  version = "0.13.8";
 
   src =
     if stdenv.isDarwin
     then
     fetchurl {
       url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz";
-      sha256 = "04kwjjrriyizpvhs96jgyx21ppyd1ynblk24i5825ywxlw9hja25";
+      sha256 = "058w8w24g7xbdkn5l97jfj9dcg81vkfh3w8112anj982lynk6391";
     }
     else
     fetchurl {
       url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz";
-      sha256 = "012znrj32aq96qh1g2hscdvhl3flgihhimiz40agk0dykpksblns";
+      sha256 = "01xb9sl6rmg02ypdrv4n0mkzmdr5y9rajcdmg9c3j46q7z6q9mxy";
     };
 
 
@@ -59,7 +59,7 @@ in stdenv.mkDerivation rec {
     description = "A strongly-typed functional programming language that compiles to JavaScript";
     homepage = "https://www.purescript.org/";
     license = licenses.bsd3;
-    maintainers = [ maintainers.justinwoo maintainers.mbbx6spp ];
+    maintainers = with maintainers; [ justinwoo mbbx6spp cdepillabout ];
     platforms = [ "x86_64-linux" "x86_64-darwin" ];
   };
 }