summary refs log tree commit diff
path: root/pkgs/development/compilers/hop
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-01-02 00:01:40 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-01-02 00:01:40 +0100
commit0ed2a253f195453e60d910227b13c7f69e38d3ed (patch)
treeaba535ffeb7955ad6b9b560aacb1c0d826ba26c1 /pkgs/development/compilers/hop
parent5d36f5831ce1bf8daf07d12219b400139a13772d (diff)
downloadnixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar.gz
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar.bz2
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar.lz
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar.xz
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.tar.zst
nixlib-0ed2a253f195453e60d910227b13c7f69e38d3ed.zip
Adds hop 2.5.1
HOP is a multi-tier programming language for the Web 2.0 and the
so-called diffuse Web.

Homepage: http://hop.inria.fr/
Diffstat (limited to 'pkgs/development/compilers/hop')
-rw-r--r--pkgs/development/compilers/hop/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/compilers/hop/default.nix b/pkgs/development/compilers/hop/default.nix
new file mode 100644
index 000000000000..3db916e6003c
--- /dev/null
+++ b/pkgs/development/compilers/hop/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, bigloo }:
+
+stdenv.mkDerivation rec {
+  name = "hop-2.5.1";
+  src = fetchurl {
+    url = "ftp://ftp-sop.inria.fr/indes/fp/Hop/${name}.tar.gz";
+    sha256 = "1bvp7pc71bln5yvfj87s8750c6l53wjl6f8m12v62q9926adhwys";
+  };
+
+  buildInputs = [ bigloo ];
+
+  preConfigure = ''
+    export NIX_LDFLAGS="$NIX_LDFLAGS -lbigloogc-4.1a";
+  '';
+
+  configureFlags = [
+    "--bigloo=${bigloo}/bin/bigloo"
+    "--bigloolibdir=${bigloo}/lib/bigloo/4.1a/"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "A multi-tier programming language for the Web 2.0 and the so-called diffuse Web";
+    homepage = http://hop.inria.fr/;
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ vbgl ];
+  };
+}