gauche: 0.9.10 -> 0.9.13

This commit is contained in:
Mario Rodas 2023-11-30 04:20:00 +00:00
parent 0a91ab37e7
commit 1e125813bf
2 changed files with 7 additions and 5 deletions

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

@ -31641,7 +31641,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 { };