2023-05-25 03:48:23 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "fleng";
|
2024-03-17 01:44:55 +01:00
|
|
|
version = "20";
|
2023-05-25 03:48:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.call-with-current-continuation.org/fleng/fleng-${finalAttrs.version}.tgz";
|
2024-03-17 01:44:55 +01:00
|
|
|
hash = "sha256-kkouDNbdVGE7vskmu8kISA/RHIGed5vLY/ch4qgew3g=";
|
2023-05-25 03:48:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.call-with-current-continuation.org/fleng/fleng.html";
|
|
|
|
description = "Low level concurrent logic programming language descended from Prolog";
|
|
|
|
license = lib.licenses.publicDomain;
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
# TODO: bootstrap
|