Merge pull request #204277 from r-ryantm/auto-update/corral

pony-corral: 0.6.0 -> 0.6.1
This commit is contained in:
Fabian Affolter
2022-12-04 23:53:34 +01:00
committed by GitHub
@@ -1,14 +1,18 @@
{ lib, stdenv, fetchFromGitHub, ponyc }:
{ lib
, stdenv
, fetchFromGitHub
, ponyc
}:
stdenv.mkDerivation ( rec {
pname = "corral";
version = "0.6.0";
version = "0.6.1";
src = fetchFromGitHub {
owner = "ponylang";
repo = pname;
rev = version;
sha256 = "sha256-8hSs1pllAips27Lut1GbSn3E9lbp4BT1L2AlkyDd46o=";
rev = "refs/tags/${version}";
hash = "sha256-Rv1K6kFRylWodm1uACBs8KqqEqQZh86NqAG50heNteE=";
};
buildInputs = [ ponyc ];
@@ -18,6 +22,7 @@ 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";
license = licenses.bsd2;
maintainers = with maintainers; [ redvers ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];