about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRedvers Davies <red@infect.me>2020-09-29 01:14:12 +0000
committerRedvers Davies <red@infect.me>2020-09-29 01:14:12 +0000
commitef71bc461defb715e275edd3e5b64a9dd5c2f932 (patch)
tree9dfbf8513c9e65f1baaf0d7bbb879104394e4c48 /pkgs/development
parent09eb860c995d4b8d875c6322fe573cc01918e357 (diff)
pony-corral: init 0.4.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/ponyc/pony-corral.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ponyc/pony-corral.nix b/pkgs/development/compilers/ponyc/pony-corral.nix
new file mode 100644
index 0000000000000..7cf3000e9db19
--- /dev/null
+++ b/pkgs/development/compilers/ponyc/pony-corral.nix
@@ -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" ];
+  };
+})