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

pony-corral: 0.7.0 -> 0.8.0
This commit is contained in:
Weijia Wang 2023-09-20 07:47:34 +02:00 committed by GitHub
commit 737d7e6765
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
})