Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 13d5f47a84a0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 46a181a602e6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 8, 2019

  1. purescript: upgrade to 0.12.4 (#59147)

    justinwoo authored and xeji committed Apr 8, 2019
    Copy the full SHA
    46a181a View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/compilers/purescript/purescript/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/compilers/purescript/purescript/default.nix
Original file line number Diff line number Diff line change
@@ -18,19 +18,19 @@ let

in stdenv.mkDerivation rec {
name = "purs-simple";
version = "v0.12.3";
version = "v0.12.4";

src =
if stdenv.isDarwin
then
fetchurl {
url = "https://github.com/purescript/purescript/releases/download/v0.12.3/macos.tar.gz";
sha256 = "1f916gv4fz571l4jvr15xjnsvjyy4nljv2ii9njwlm7k6yr5m0qn";
url = "https://github.com/purescript/purescript/releases/download/v0.12.4/macos.tar.gz";
sha256 = "046b18plakwvqr77x1hybhfiyzrhnnq0q5ixcmypri1mkkdsmczx";
}
else
fetchurl {
url = "https://github.com/purescript/purescript/releases/download/v0.12.3/linux64.tar.gz";
sha256 = "1fad862a2sv4njxbbcfzibbi585m6is3ywb94nmjl8ax254baj3i";
url = "https://github.com/purescript/purescript/releases/download/v0.12.4/linux64.tar.gz";
sha256 = "18yny533sjfgacxqx1ki306nhznj4q6nv52c83l82gqj8amyj7k0";
};