mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Merge pull request #106679 from siraben/gauche-update
gauche: 0.9.9 → 0.9.10
This commit is contained in:
commit
3e5207becc
43
pkgs/development/interpreters/gauche/boot.nix
Normal file
43
pkgs/development/interpreters/gauche/boot.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -1,20 +1,25 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, texinfo, libiconv, gdbm, openssl, zlib
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo
|
||||||
, mbedtls, cacert
|
, libiconv, gdbm, openssl, zlib, mbedtls, cacert }:
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gauche";
|
pname = "gauche";
|
||||||
version = "0.9.9";
|
version = "0.9.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/gauche/Gauche-${version}.tgz";
|
owner = "shirok";
|
||||||
sha256 = "1yzpszhw52vkpr65r5d4khf3489mnnvnw58dd2wsvvx7499k5aac";
|
repo = pname;
|
||||||
|
rev = "release${lib.replaceChars [ "." ] [ "_" ] version}";
|
||||||
|
sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig texinfo ];
|
nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ];
|
||||||
|
|
||||||
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
|
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
|
||||||
|
|
||||||
|
autoreconfPhase = ''
|
||||||
|
./DIST gen
|
||||||
|
'';
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
@ -34,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||||||
# TODO: Fix tests that fail in sandbox build
|
# TODO: Fix tests that fail in sandbox build
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "R7RS Scheme scripting engine";
|
description = "R7RS Scheme scripting engine";
|
||||||
homepage = "https://practical-scheme.net/gauche/";
|
homepage = "https://practical-scheme.net/gauche/";
|
||||||
maintainers = with maintainers; [ mnacamura ];
|
maintainers = with maintainers; [ mnacamura ];
|
||||||
|
@ -21610,6 +21610,8 @@ in
|
|||||||
|
|
||||||
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
||||||
|
|
||||||
|
gaucheBootstrap = callPackage ../development/interpreters/gauche/boot.nix { };
|
||||||
|
|
||||||
gauche = callPackage ../development/interpreters/gauche { };
|
gauche = callPackage ../development/interpreters/gauche { };
|
||||||
|
|
||||||
gcal = callPackage ../applications/misc/gcal { };
|
gcal = callPackage ../applications/misc/gcal { };
|
||||||
|
Loading…
Reference in New Issue
Block a user