libspelling: unstable-2023-07-17 -> 0.2.0

+8 -4
+8 -4
pkgs/development/libraries/libspelling/default.nix
··· 12 12 , gtksourceview5 13 13 , enchant 14 14 , icu 15 + , nix-update-script 15 16 }: 16 17 17 - stdenv.mkDerivation { 18 + stdenv.mkDerivation rec { 18 19 pname = "libspelling"; 19 - version = "unstable-2023-07-17"; 20 + version = "0.2.0"; 20 21 21 22 outputs = [ "out" "dev" "devdoc" ]; 22 23 ··· 24 25 domain = "gitlab.gnome.org"; 25 26 owner = "chergert"; 26 27 repo = "libspelling"; 27 - rev = "65185023db95ec464970aeaeab766fe3ba26ae7d"; 28 - hash = "sha256-R3nPs16y8XGamQvMSF7wb52h0jxt17H2FZPwauLDI/c="; 28 + rev = version; 29 + hash = "sha256-OOSQgdtnEx6/5yKwavCGdY/5L0Mr3XW0Srmd42ZTdUk="; 29 30 }; 30 31 31 32 nativeBuildInputs = [ ··· 50 51 moveToOutput "share/doc" "$devdoc" 51 52 ''; 52 53 54 + passthru.updateScript = nix-update-script { }; 55 + 53 56 meta = with lib; { 54 57 description = "Spellcheck library for GTK 4"; 55 58 homepage = "https://gitlab.gnome.org/chergert/libspelling"; 56 59 license = licenses.lgpl21Plus; 60 + changelog = "https://gitlab.gnome.org/chergert/libspelling/-/raw/${version}/NEWS"; 57 61 maintainers = with maintainers; [ chuangzhu ]; 58 62 }; 59 63 }