nixpkgs/pkgs/development/compilers/ponyc/pony-corral.nix
2021-05-08 17:45:16 -07:00

26 lines
646 B
Nix

{ lib, stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation ( rec {
pname = "corral";
version = "0.5.0";
src = fetchFromGitHub {
owner = "ponylang";
repo = pname;
rev = version;
sha256 = "sha256-mQ/SxnppChZ+6PKVo5VM+QiNn94F4qJT1kQSrwXTa7k=";
};
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";
license = licenses.bsd2;
maintainers = with maintainers; [ redvers ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
})