f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchgit, ocaml, findlib, ocamlbuild, menhir, which }:
|
|
|
|
let inherit (stdenv.lib) getVersion versionAtLeast; in
|
|
|
|
assert versionAtLeast (getVersion ocaml) "3.12";
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "eff-20140928";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/matijapretnar/eff.git";
|
|
rev = "90f884a790fddddb51d4d1d3b7c2edf1e8aabb64";
|
|
sha256 = "0cqqrpvfw0nrk5d28mkzfvc8yzqxcss0k46bkmqhqjkqq886n2mm";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild menhir which ];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.eff-lang.org;
|
|
description = "A functional programming language based on algebraic effects and their handlers";
|
|
longDescription = ''
|
|
Eff is a functional language with handlers of not only exceptions,
|
|
but also of other computational effects such as state or I/O. With
|
|
handlers, you can simply implement transactions, redirections,
|
|
backtracking, multi-threading, and much more...
|
|
'';
|
|
license = licenses.bsd2;
|
|
platforms = ocaml.meta.platforms or [];
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
};
|
|
}
|