guile-hoot: 0.6.0 -> 0.6.1 (#440371)

authored by Peder Bergebakken Sundt and committed by GitHub 4f3dbf3f 2c5498fb

+12 -13
+12 -13
pkgs/by-name/gu/guile-hoot/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - fetchFromGitLab, 4 + fetchFromGitea, 5 5 autoreconfHook, 6 6 guile, 7 7 pkg-config, 8 8 texinfo, 9 + nix-update-script, 9 10 }: 10 11 11 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation (finalAttrs: { 12 13 pname = "guile-hoot"; 13 - version = "0.6.0"; 14 + version = "0.6.1"; 14 15 15 - src = fetchFromGitLab { 16 + src = fetchFromGitea { 17 + domain = "codeberg.org"; 16 18 owner = "spritely"; 17 - repo = "guile-hoot"; 18 - rev = "v${version}"; 19 - hash = "sha256-xPU4uLyh3gd2ubyGednCqB3uzKrabhXQhs6vBc8z0ps="; 19 + repo = "hoot"; 20 + tag = "v${finalAttrs.version}"; 21 + hash = "sha256-Y3UWKSjJQnYh+06p+Oi0Fa0ul2T8QWemgNm9A0su5WQ="; 20 22 }; 21 23 22 24 nativeBuildInputs = [ ··· 32 34 33 35 makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; 34 36 35 - configureFlags = [ 36 - "--with-guile-site-dir=$(out)/${guile.siteDir}" 37 - "--with-guile-site-ccache-dir=$(out)/${guile.siteCcacheDir}" 38 - ]; 37 + passthru.updateScript = nix-update-script { }; 39 38 40 39 meta = { 41 40 description = "Scheme to WebAssembly compiler backend for GNU Guile and a general purpose WASM toolchain"; 42 - homepage = "https://gitlab.com/spritely/guile-hoot"; 41 + homepage = "https://codeberg.org/spritely/hoot"; 43 42 license = lib.licenses.asl20; 44 43 maintainers = with lib.maintainers; [ jinser ]; 45 44 platforms = lib.platforms.unix; 46 45 }; 47 - } 46 + })