tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gtkspell3: update from 3.0.4 to 3.0.6
Mateusz Kowalczyk
11 years ago
fca55bc9
50cf603d
+10
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gtkspell
3.nix
+10
-6
pkgs/development/libraries/gtkspell/3.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "gtkspell-${version}";
5
5
-
version = "3.0.4";
6
6
-
5
5
+
version = "3.0.6";
6
6
+
7
7
src = fetchurl {
8
8
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
9
9
-
sha256 = "19z48gfbraasrxai7qdkxxvky0kwifkkzqz0jqcskhcr1ikqxgzs";
9
9
+
sha256 = "1hqaddgzxjw9lpsphankld6a8bpm92hfv46kp99cgmj82rdjwdq1";
10
10
};
11
11
-
11
11
+
12
12
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
13
13
propagatedBuildInputs = [ enchant ];
14
14
15
15
-
meta = with stdenv.lib; {
16
16
-
platforms = platforms.linux;
15
15
+
meta = {
16
16
+
homepage = "http://gtkspell.sourceforge.net/";
17
17
+
description = "Word-processor-style highlighting GtkTextView widget";
18
18
+
license = stdenv.lib.licenses.gpl2Plus;
19
19
+
platforms = stdenv.lib.platforms.unix;
20
20
+
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
17
21
};
18
22
}