Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / compilers / ponyc / pony-corral.nix
blob8910d7f1e61096658ef4c41b0cf55d8adea85251
1 { lib, stdenv, fetchFromGitHub, ponyc }:
3 stdenv.mkDerivation ( rec {
4   pname = "corral";
5   version = "0.4.1";
7   src = fetchFromGitHub {
8     owner = "ponylang";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-YJZ1jGMOeZKGZaTrWO2mtR94F0voC2DXaghi0LytF7I=";
12   };
14   buildInputs = [ ponyc ];
16   installFlags = [ "prefix=${placeholder "out"}" "install" ];
18   meta = with lib; {
19     description = "Corral is a dependency management tool for ponylang (ponyc)";
20     homepage = "https://www.ponylang.io";
21     license = licenses.bsd2;
22     maintainers = with maintainers; [ redvers ];
23     platforms = [ "x86_64-linux" "x86_64-darwin" ];
24   };