pony-corral: init 0.4.0
This commit is contained in:
parent
09eb860c99
commit
ef71bc461d
2 changed files with 26 additions and 0 deletions
25
pkgs/development/compilers/ponyc/pony-corral.nix
Normal file
25
pkgs/development/compilers/ponyc/pony-corral.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub, ponyc }:
|
||||
|
||||
stdenv.mkDerivation ( rec {
|
||||
pname = "corral";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ponylang";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0kydx4psl6k4n46as9xc5xwbwapibm6g7haxds7y9d392807qfqk";
|
||||
};
|
||||
|
||||
buildInputs = [ ponyc ];
|
||||
|
||||
installFlags = [ "prefix=${placeholder "out"}" "install" ];
|
||||
|
||||
meta = with stdenv.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" ];
|
||||
};
|
||||
})
|
|
@ -9609,6 +9609,7 @@ in
|
|||
stdenv = clangStdenv;
|
||||
};
|
||||
|
||||
pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { };
|
||||
pony-stable = callPackage ../development/compilers/ponyc/pony-stable.nix { };
|
||||
|
||||
qbe = callPackage ../development/compilers/qbe { };
|
||||
|
|
Loading…
Reference in a new issue