nixpkgs/pkgs/development/compilers/ponyc/pony-corral.nix
Redvers Davies 7df27785bd pony-corral: 0.5.3 -> 0.5.4
* Update to compile with Pony 0.44.0
2021-10-08 17:11:29 -04:00

26 lines
647 B
Nix

{ lib, stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation ( rec {
pname = "corral";
version = "0.5.4";
src = fetchFromGitHub {
owner = "ponylang";
repo = pname;
rev = version;
sha256 = "1chw56khx5akjxkq0vwrw9ryjpyc3fzdmksh496llc513l01hpkl";
};
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" ];
};
})