8 # Compute the “release” version of bigloo (before the first dash, if any)
12 inherit (lib) head splitString;
14 head (splitString "-" (builtins.parseDrvName bigloo.name).version);
17 stdenv.mkDerivation rec {
21 url = "ftp://ftp-sop.inria.fr/indes/fp/Hop/hop-${version}.tar.gz";
22 sha256 = "sha256-GzXh4HC+SFFoUi7SMqu36iYRPAJ6tMnOHd+he6n9k1I=";
26 substituteInPlace configure --replace "(os-tmp)" '(getenv "TMPDIR")'
29 buildInputs = [ bigloo ];
32 "--bigloo=${bigloo}/bin/bigloo"
33 "--bigloolibdir=${bigloo}/lib/bigloo/${bigloo-release}/"
37 description = "Multi-tier programming language for the Web 2.0 and the so-called diffuse Web";
38 homepage = "http://hop.inria.fr/";
39 license = licenses.gpl2Plus;
40 platforms = platforms.linux;
41 maintainers = with maintainers; [ vbgl ];