about summary refs log tree commit diff
path: root/pkgs/development/compilers/ponyc
diff options
context:
space:
mode:
authordipinhora <dipin@sendence.com>2016-10-10 14:41:49 -0400
committerdipinhora <dipin@sendence.com>2016-10-11 16:07:55 -0400
commit8a7cb597aedf0ada6b514e6e1fe89cd919072a9f (patch)
tree0834fd0d4eb5baed95a3b28f9c58f949b66b6174 /pkgs/development/compilers/ponyc
parentda9c6a7744f3e0aad6677357bffb30cd7fe7d92c (diff)
downloadnixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar.gz
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar.bz2
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar.lz
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar.xz
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.tar.zst
nixlib-8a7cb597aedf0ada6b514e6e1fe89cd919072a9f.zip
pony-stable: init at 2016-10-10
Diffstat (limited to 'pkgs/development/compilers/ponyc')
-rw-r--r--pkgs/development/compilers/ponyc/pony-stable.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ponyc/pony-stable.nix b/pkgs/development/compilers/ponyc/pony-stable.nix
new file mode 100644
index 000000000000..cd4859acec21
--- /dev/null
+++ b/pkgs/development/compilers/ponyc/pony-stable.nix
@@ -0,0 +1,26 @@
+{stdenv, fetchFromGitHub, ponyc }:
+
+stdenv.mkDerivation {
+  name = "pony-stable-2016-10-10";
+
+  src = fetchFromGitHub {
+    owner = "jemc";
+    repo = "pony-stable";
+    rev = "fdefa26fed93f4ff81c323f29abd47813c515703";
+    sha256 = "16inavy697icgryyvn9gcylgh639xxs7lnbrqdzcryvh0ck15qxk";
+  };
+
+  buildInputs = [ ponyc ];
+
+  installPhase = ''
+    make prefix=$out install
+  '';
+
+  meta = {
+    description = "A simple dependency manager for the Pony language.";
+    homepage = http://www.ponylang.org;
+    license = stdenv.lib.licenses.bsd2;
+    maintainers = [ stdenv.lib.maintainers.dipinhora ];
+    platforms = stdenv.lib.platforms.unix;
+  };
+}