tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libspelling: unstable-2023-07-17 -> 0.2.0
Chuang Zhu
2 years ago
ea5228f2
bab580c6
+8
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libspelling
default.nix
+8
-4
pkgs/development/libraries/libspelling/default.nix
···
12
, gtksourceview5
13
, enchant
14
, icu
0
15
}:
16
17
-
stdenv.mkDerivation {
18
pname = "libspelling";
19
-
version = "unstable-2023-07-17";
20
21
outputs = [ "out" "dev" "devdoc" ];
22
···
24
domain = "gitlab.gnome.org";
25
owner = "chergert";
26
repo = "libspelling";
27
-
rev = "65185023db95ec464970aeaeab766fe3ba26ae7d";
28
-
hash = "sha256-R3nPs16y8XGamQvMSF7wb52h0jxt17H2FZPwauLDI/c=";
29
};
30
31
nativeBuildInputs = [
···
50
moveToOutput "share/doc" "$devdoc"
51
'';
52
0
0
53
meta = with lib; {
54
description = "Spellcheck library for GTK 4";
55
homepage = "https://gitlab.gnome.org/chergert/libspelling";
56
license = licenses.lgpl21Plus;
0
57
maintainers = with maintainers; [ chuangzhu ];
58
};
59
}
···
12
, gtksourceview5
13
, enchant
14
, icu
15
+
, nix-update-script
16
}:
17
18
+
stdenv.mkDerivation rec {
19
pname = "libspelling";
20
+
version = "0.2.0";
21
22
outputs = [ "out" "dev" "devdoc" ];
23
···
25
domain = "gitlab.gnome.org";
26
owner = "chergert";
27
repo = "libspelling";
28
+
rev = version;
29
+
hash = "sha256-OOSQgdtnEx6/5yKwavCGdY/5L0Mr3XW0Srmd42ZTdUk=";
30
};
31
32
nativeBuildInputs = [
···
51
moveToOutput "share/doc" "$devdoc"
52
'';
53
54
+
passthru.updateScript = nix-update-script { };
55
+
56
meta = with lib; {
57
description = "Spellcheck library for GTK 4";
58
homepage = "https://gitlab.gnome.org/chergert/libspelling";
59
license = licenses.lgpl21Plus;
60
+
changelog = "https://gitlab.gnome.org/chergert/libspelling/-/raw/${version}/NEWS";
61
maintainers = with maintainers; [ chuangzhu ];
62
};
63
}