pony-corral: init 0.4.0
This commit is contained in:
parent
09eb860c99
commit
ef71bc461d
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;
|
stdenv = clangStdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { };
|
||||||
pony-stable = callPackage ../development/compilers/ponyc/pony-stable.nix { };
|
pony-stable = callPackage ../development/compilers/ponyc/pony-stable.nix { };
|
||||||
|
|
||||||
qbe = callPackage ../development/compilers/qbe { };
|
qbe = callPackage ../development/compilers/qbe { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user