libspelling: 0.4.5 → 0.4.6

https://gitlab.gnome.org/GNOME/libspelling/-/compare/0.4.5...0.4.6
This commit is contained in:
Jan Tojnar
2025-01-29 02:19:28 +01:00
parent c4a47d4f94
commit 69a71b724d
+7 -10
View File
@@ -1,7 +1,7 @@
{
lib,
stdenv,
fetchFromGitLab,
fetchurl,
meson,
ninja,
pkg-config,
@@ -17,9 +17,9 @@
gnome,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "libspelling";
version = "0.4.5";
version = "0.4.6";
outputs = [
"out"
@@ -27,12 +27,9 @@ stdenv.mkDerivation rec {
"devdoc"
];
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "libspelling";
rev = version;
hash = "sha256-+WjhBg98s5RxQfd85FtMNuoVWjw9Hap9yDqnpYNAGgw=";
src = fetchurl {
url = "mirror://gnome/sources/libspelling/${lib.versions.majorMinor finalAttrs.version}/libspelling-${finalAttrs.version}.tar.xz";
hash = "sha256-MkiptTNuovcn0tuRLS8Ag6zMBQXOcHZ5s9m4JmwBAfU=";
};
nativeBuildInputs = [
@@ -69,4 +66,4 @@ stdenv.mkDerivation rec {
changelog = "https://gitlab.gnome.org/GNOME/libspelling/-/raw/${version}/NEWS";
maintainers = with maintainers; [ chuangzhu ] ++ teams.gnome.members;
};
}
})