summary refs log tree commit diff
path: root/pkgs/development/interpreters/gauche/boot.nix
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2020-12-12 02:50:37 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-10 21:23:52 +0700
commit47de48f600470d0185f5ece640b42443f08d922f (patch)
tree8d2d3f70260e3c569fd8439468e37a3e5d14ff6d /pkgs/development/interpreters/gauche/boot.nix
parent4f4b8329867674619c377f13aca0e0e11837e9fa (diff)
downloadnixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar.gz
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar.bz2
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar.lz
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar.xz
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.tar.zst
nixpkgs-47de48f600470d0185f5ece640b42443f08d922f.zip
gauche: 0.9.9 -> 0.9.10
Diffstat (limited to 'pkgs/development/interpreters/gauche/boot.nix')
-rw-r--r--pkgs/development/interpreters/gauche/boot.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/gauche/boot.nix b/pkgs/development/interpreters/gauche/boot.nix
new file mode 100644
index 00000000000..7fbc66406e6
--- /dev/null
+++ b/pkgs/development/interpreters/gauche/boot.nix
@@ -0,0 +1,43 @@
+{ stdenv, lib, fetchurl, pkg-config, texinfo, libiconv, gdbm, openssl, zlib
+, mbedtls, cacert }:
+
+stdenv.mkDerivation rec {
+  pname = "gauche-bootstrap";
+  version = "0.9.9";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/gauche/Gauche-${version}.tgz";
+    sha256 = "1yzpszhw52vkpr65r5d4khf3489mnnvnw58dd2wsvvx7499k5aac";
+  };
+
+  nativeBuildInputs = [ pkg-config texinfo ];
+
+  buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
+
+  postPatch = ''
+    patchShebangs .
+  '';
+
+  configureFlags = [
+    "--with-iconv=${libiconv}"
+    "--with-dbm=gdbm"
+    "--with-zlib=${zlib}"
+    "--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt"
+    # TODO: Enable slib
+    #       Current slib in nixpkgs is specialized to Guile
+    # "--with-slib=${slibGuile}/lib/slib"
+  ];
+
+  enableParallelBuilding = true;
+
+  # TODO: Fix tests that fail in sandbox build
+  doCheck = false;
+
+  meta = with lib; {
+    description = "R7RS Scheme scripting engine";
+    homepage = "https://practical-scheme.net/gauche/";
+    maintainers = with maintainers; [ mnacamura ];
+    license = licenses.bsd3;
+    platforms = platforms.unix;
+  };
+}