Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib
2, stdenv
3, fetchurl
4}:
5
6stdenv.mkDerivation (finalAttrs: {
7 pname = "fleng";
8 version = "14";
9
10 src = fetchurl {
11 url = "http://www.call-with-current-continuation.org/fleng/fleng-${finalAttrs.version}.tgz";
12 hash = "sha256-Js9bllX/399t9oeiRrqJNUFyYJwJVb/xSzwrcMrdi08=";
13 };
14
15 doCheck = true;
16
17 meta = {
18 homepage = "http://www.call-with-current-continuation.org/fleng/fleng.html";
19 description = "A low level concurrent logic programming language descended from Prolog";
20 license = lib.licenses.publicDomain;
21 maintainers = with lib.maintainers; [ AndersonTorres ];
22 platforms = lib.platforms.unix;
23 };
24})
25# TODO: bootstrap