mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
31 lines
779 B
Nix
31 lines
779 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, ponyc
|
|
}:
|
|
|
|
stdenv.mkDerivation ( rec {
|
|
pname = "corral";
|
|
version = "unstable-2023-02-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ponylang";
|
|
repo = pname;
|
|
rev = "f31353a9ec9cd7eab6ee89079ae6a782192fd4b5";
|
|
hash = "sha256-jTx/7iFvmwOdjGVf/6NUy+FTkv6Mkv8DeotJ67pvmtc=";
|
|
};
|
|
|
|
buildInputs = [ ponyc ];
|
|
|
|
installFlags = [ "prefix=${placeholder "out"}" "install" ];
|
|
|
|
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" ];
|
|
};
|
|
})
|