mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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/
This commit is contained in:
parent
5d36f5831c
commit
0ed2a253f1
2 changed files with 30 additions and 0 deletions
28
pkgs/development/compilers/hop/default.nix
Normal file
28
pkgs/development/compilers/hop/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -3381,6 +3381,8 @@ let
|
|||
hhvm = callPackage ../development/compilers/hhvm { };
|
||||
hiphopvm = hhvm; /* Compatibility alias */
|
||||
|
||||
hop = callPackage ../development/compilers/hop { };
|
||||
|
||||
falcon = callPackage ../development/interpreters/falcon { };
|
||||
|
||||
fsharp = callPackage ../development/compilers/fsharp {};
|
||||
|
|
Loading…
Reference in a new issue