nixpkgs/pkgs/development/compilers/ponyc/pony-corral.nix

26 lines
646 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ponyc }:
2020-09-29 03:14:12 +02:00
stdenv.mkDerivation ( rec {
pname = "corral";
2021-01-29 13:29:17 +01:00
version = "0.4.1";
2020-09-29 03:14:12 +02:00
src = fetchFromGitHub {
owner = "ponylang";
repo = pname;
rev = version;
2021-01-29 13:29:17 +01:00
sha256 = "sha256-YJZ1jGMOeZKGZaTrWO2mtR94F0voC2DXaghi0LytF7I=";
2020-09-29 03:14:12 +02:00
};
buildInputs = [ ponyc ];
installFlags = [ "prefix=${placeholder "out"}" "install" ];
meta = with lib; {
2020-09-29 03:14:12 +02:00
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" ];
};
})