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: b873eb731712
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e55571317691
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 18, 2020

  1. purescript: 0.13.5 -> 0.13.6

    mbbx6spp committed Jan 18, 2020
    Copy the full SHA
    c71aa5f View commit details
  2. Copy the full SHA
    78941c0 View commit details
  3. Merge pull request #77980 from mbbx6spp/mbbx6spp/purescript-0.13.6

    purescript: 0.13.5 -> 0.13.6 (and add maintainer)
    edef1c authored Jan 18, 2020
    Copy the full SHA
    e555713 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/compilers/purescript/purescript/default.nix
8 changes: 4 additions & 4 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 {
pname = "purescript";
version = "0.13.5";
version = "0.13.6";

src =
if stdenv.isDarwin
then
fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/macos.tar.gz";
sha256 = "19bb50m0cd738r353blgy21d842b3yj58xfbplk7bz59jawj9lym";
sha256 = "04kwjjrriyizpvhs96jgyx21ppyd1ynblk24i5825ywxlw9hja25";
}
else
fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/linux64.tar.gz";
sha256 = "016wvwypgb4859f0n1lqsqv9a8cca2y8g7d6ffvzx6rncd115gxi";
sha256 = "012znrj32aq96qh1g2hscdvhl3flgihhimiz40agk0dykpksblns";
};


@@ -59,7 +59,7 @@ in stdenv.mkDerivation rec {
description = "A strongly-typed functional programming language that compiles to JavaScript";
homepage = http://www.purescript.org/;
license = licenses.bsd3;
maintainers = [ maintainers.justinwoo ];
maintainers = [ maintainers.justinwoo maintainers.mbbx6spp ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}