Unverified Commit 737d7e67 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #256200 from wegank/pony-corral-bump

pony-corral: 0.7.0 -> 0.8.0
parents b1e2035b 532f5bab
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -5,18 +5,20 @@
, nix-update-script
}:

stdenv.mkDerivation ( rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "corral";
  version = "0.7.0";
  version = "0.8.0";

  src = fetchFromGitHub {
    owner = "ponylang";
    repo = pname;
    rev = "f31353a9ec9cd7eab6ee89079ae6a782192fd4b5";
    hash = "sha256-jTx/7iFvmwOdjGVf/6NUy+FTkv6Mkv8DeotJ67pvmtc=";
    repo = "corral";
    rev = finalAttrs.version;
    hash = "sha256-+pHg5BFHlScC1suad0/3RqKAnxoEVZNUNj1EDLvbsfA=";
  };

  buildInputs = [ ponyc ];
  strictDeps = true;

  nativeBuildInputs = [ ponyc ];

  installFlags = [ "prefix=${placeholder "out"}" "install" ];

@@ -25,9 +27,9 @@ stdenv.mkDerivation ( rec {
  meta = with lib; {
    description = "Corral is a dependency management tool for ponylang (ponyc)";
    homepage = "https://www.ponylang.io";
    changelog = "https://github.com/ponylang/corral/blob/${version}/CHANGELOG.md";
    changelog = "https://github.com/ponylang/corral/blob/${finalAttrs.version}/CHANGELOG.md";
    license = licenses.bsd2;
    maintainers = with maintainers; [ redvers ];
    platforms = [ "x86_64-linux" "x86_64-darwin" ];
    inherit (ponyc.meta) platforms;
  };
})