about summary refs log tree commit diff
path: root/pkgs/by-name/fl/fleng
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-15 23:17:05 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-16 21:15:31 +0000
commitde1073b68e91f470050933852607a91d1742ebca (patch)
treeed5cc7f16bbdf56f9d9370f14736f1a835d00466 /pkgs/by-name/fl/fleng
parent23edd7b66d7bec23fb30404d9d106e7f54d74ea5 (diff)
fleng: migrate to by-name
Diffstat (limited to 'pkgs/by-name/fl/fleng')
-rw-r--r--pkgs/by-name/fl/fleng/package.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/by-name/fl/fleng/package.nix b/pkgs/by-name/fl/fleng/package.nix
new file mode 100644
index 0000000000000..d1ab959598085
--- /dev/null
+++ b/pkgs/by-name/fl/fleng/package.nix
@@ -0,0 +1,25 @@
+{ lib
+, stdenv
+, fetchurl
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "fleng";
+  version = "14";
+
+  src = fetchurl {
+    url = "http://www.call-with-current-continuation.org/fleng/fleng-${finalAttrs.version}.tgz";
+    hash = "sha256-Js9bllX/399t9oeiRrqJNUFyYJwJVb/xSzwrcMrdi08=";
+  };
+
+  doCheck = true;
+
+  meta = {
+    homepage = "http://www.call-with-current-continuation.org/fleng/fleng.html";
+    description = "A low level concurrent logic programming language descended from Prolog";
+    license = lib.licenses.publicDomain;
+    maintainers = with lib.maintainers; [ AndersonTorres ];
+    platforms = lib.platforms.unix;
+  };
+})
+# TODO: bootstrap