Unverified Commit 99fb0690 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

gren: 0.6.3 -> 0.6.5 (#502929)

parents 0c2d80c4 89910b48
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -29,11 +29,11 @@
}:
mkDerivation {
  pname = "gren";
  version = "0.6.3";
  version = "0.6.5";
  src = fetchgit {
    url = "https://github.com/gren-lang/compiler.git";
    sha256 = "0p93wamff539pb242lib2wyfr6alqz96rpyh9xb0a61ix0j3miiz";
    rev = "54277a25d47b5c20816550ff6deab89026797526";
    sha256 = "1865x63y0kcp2ax49333i5512vwh845iiyq3b30jm31pr113csvr";
    rev = "ba2a2153b78086d75fe01ba45bdd630d6f5fc2fc";
    fetchSubmodules = true;
  };
  isLibrary = false;
@@ -72,7 +72,10 @@ mkDerivation {
  testHaskellDepends = [
    base
    bytestring
    containers
    hspec
    prettyprinter
    text
    utf8-string
  ];
  testToolDepends = [ hspec-discover ];
@@ -80,6 +83,6 @@ mkDerivation {
  jailbreak = true;
  homepage = "https://gren-lang.org";
  description = "The `gren` command line interface";
  license = lib.licenses.bsd3;
  license = lib.licensesSpdx."BSD-3-Clause";
  mainProgram = "gren";
}
+2 −2
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "gren";
  version = "0.6.3";
  version = "0.6.5";

  src = fetchFromGitHub {
    owner = "gren-lang";
    repo = "compiler";
    tag = finalAttrs.version;
    hash = "sha256-P8Y6JOgxGAVWT9DfbNLHVJnsPBcrUkHEumkU56riI10=";
    hash = "sha256-eWs2Qsg3jCrBWAP7GAtBkG8RSoljjES6EpdN4IfpxaA=";
  };

  buildInputs = [ nodejs ];