lol

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

pony-corral: 0.7.0 -> 0.8.0

authored by

Weijia Wang and committed by
GitHub
737d7e67 b1e2035b

+10 -8
+10 -8
pkgs/development/compilers/ponyc/pony-corral.nix
··· 5 5 , nix-update-script 6 6 }: 7 7 8 - stdenv.mkDerivation ( rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "corral"; 10 - version = "0.7.0"; 10 + version = "0.8.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "ponylang"; 14 - repo = pname; 15 - rev = "f31353a9ec9cd7eab6ee89079ae6a782192fd4b5"; 16 - hash = "sha256-jTx/7iFvmwOdjGVf/6NUy+FTkv6Mkv8DeotJ67pvmtc="; 14 + repo = "corral"; 15 + rev = finalAttrs.version; 16 + hash = "sha256-+pHg5BFHlScC1suad0/3RqKAnxoEVZNUNj1EDLvbsfA="; 17 17 }; 18 18 19 - buildInputs = [ ponyc ]; 19 + strictDeps = true; 20 + 21 + nativeBuildInputs = [ ponyc ]; 20 22 21 23 installFlags = [ "prefix=${placeholder "out"}" "install" ]; 22 24 ··· 25 27 meta = with lib; { 26 28 description = "Corral is a dependency management tool for ponylang (ponyc)"; 27 29 homepage = "https://www.ponylang.io"; 28 - changelog = "https://github.com/ponylang/corral/blob/${version}/CHANGELOG.md"; 30 + changelog = "https://github.com/ponylang/corral/blob/${finalAttrs.version}/CHANGELOG.md"; 29 31 license = licenses.bsd2; 30 32 maintainers = with maintainers; [ redvers ]; 31 - platforms = [ "x86_64-linux" "x86_64-darwin" ]; 33 + inherit (ponyc.meta) platforms; 32 34 }; 33 35 })