Merge pull request #271397 from marsam/update-gauche

gauche: 0.9.10 -> 0.9.13
This commit is contained in:
Mario Rodas 2023-12-02 19:40:49 -05:00 committed by GitHub
commit c34b8d3c80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 8 deletions

View File

@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "gauche-bootstrap";
version = "0.9.9";
version = "0.9.12";
src = fetchurl {
url = "mirror://sourceforge/gauche/Gauche-${version}.tgz";
sha256 = "1yzpszhw52vkpr65r5d4khf3489mnnvnw58dd2wsvvx7499k5aac";
url = "https://github.com/shirok/Gauche/releases/download/release${lib.replaceStrings ["."] ["_"] version}/Gauche-${version}.tgz";
hash = "sha256-tK5kkhsHqWZhaV69WqwN7IE9GmjlRqYWCRE9eEP1thc=";
};
nativeBuildInputs = [ pkg-config texinfo ];

View File

@ -1,20 +1,20 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo
, libiconv, gdbm, openssl, zlib, mbedtls, cacert }:
, libiconv, gdbm, openssl, zlib, mbedtls, cacert, CoreServices }:
stdenv.mkDerivation rec {
pname = "gauche";
version = "0.9.10";
version = "0.9.13";
src = fetchFromGitHub {
owner = "shirok";
repo = pname;
rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb";
hash = "sha256-XD4zJzCktGi/E9sA6BVm9JVQBVrG5119EjZNbP1pVJU=";
};
nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ];
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ] ++ lib.optionals stdenv.isDarwin [ CoreServices ];
autoreconfPhase = ''
./DIST gen

View File

@ -31637,7 +31637,9 @@ with pkgs;
gaucheBootstrap = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche/boot.nix { };
gauche = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche { };
gauche = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche {
inherit (darwin.apple_sdk_11_0.frameworks) CoreServices;
};
gazelle-origin = python3Packages.callPackage ../tools/misc/gazelle-origin { };