Merge pull request #271397 from marsam/update-gauche

gauche: 0.9.10 -> 0.9.13

authored by Mario Rodas and committed by GitHub c34b8d3c 97312082

+10 -8
+3 -3
pkgs/development/interpreters/gauche/boot.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "gauche-bootstrap"; 6 - version = "0.9.9"; 6 + version = "0.9.12"; 7 7 8 8 src = fetchurl { 9 - url = "mirror://sourceforge/gauche/Gauche-${version}.tgz"; 10 - sha256 = "1yzpszhw52vkpr65r5d4khf3489mnnvnw58dd2wsvvx7499k5aac"; 9 + url = "https://github.com/shirok/Gauche/releases/download/release${lib.replaceStrings ["."] ["_"] version}/Gauche-${version}.tgz"; 10 + hash = "sha256-tK5kkhsHqWZhaV69WqwN7IE9GmjlRqYWCRE9eEP1thc="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkg-config texinfo ];
+4 -4
pkgs/development/interpreters/gauche/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo 2 - , libiconv, gdbm, openssl, zlib, mbedtls, cacert }: 2 + , libiconv, gdbm, openssl, zlib, mbedtls, cacert, CoreServices }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "gauche"; 6 - version = "0.9.10"; 6 + version = "0.9.13"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "shirok"; 10 10 repo = pname; 11 11 rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}"; 12 - sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb"; 12 + hash = "sha256-XD4zJzCktGi/E9sA6BVm9JVQBVrG5119EjZNbP1pVJU="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ]; 16 16 17 - buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ]; 17 + buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ] ++ lib.optionals stdenv.isDarwin [ CoreServices ]; 18 18 19 19 autoreconfPhase = '' 20 20 ./DIST gen
+3 -1
pkgs/top-level/all-packages.nix
··· 31637 31637 31638 31638 gaucheBootstrap = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche/boot.nix { }; 31639 31639 31640 - gauche = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche { }; 31640 + gauche = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche { 31641 + inherit (darwin.apple_sdk_11_0.frameworks) CoreServices; 31642 + }; 31641 31643 31642 31644 gazelle-origin = python3Packages.callPackage ../tools/misc/gazelle-origin { }; 31643 31645