libstemmer: enable structuredAttrs, use tag/hash

This commit is contained in:
Stefan Frijters
2026-08-14 00:18:34 +02:00
parent ec0e371d70
commit e1f6c9220d

View File

@@ -13,8 +13,8 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "snowballstem";
repo = "snowball";
rev = "v${finalAttrs.version}";
sha256 = "sha256-qXrypwv/I+5npvGHGsHveijoui0ZnoGYhskCfLkewVE=";
tag = "v${finalAttrs.version}";
hash = "sha256-qXrypwv/I+5npvGHGsHveijoui0ZnoGYhskCfLkewVE=";
};
nativeBuildInputs = [ perl ];
@@ -39,6 +39,8 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
__structuredAttrs = true;
meta = {
description = "Snowball Stemming Algorithms";
homepage = "https://snowballstem.org/";