tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nuspell: 5.0.1 -> 5.1.2
Daniel Nagy
3 years ago
07acd3e4
d87090ce
+6
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
nuspell
default.nix
+6
-9
pkgs/development/libraries/nuspell/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2, pandoc }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, icu, catch2 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "nuspell";
5
5
-
version = "5.0.1";
5
5
+
version = "5.1.2";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "nuspell";
9
9
repo = "nuspell";
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-ogA7ycqdMUTN/KHV2oZzytnhZ7XVuhx+ArXZqLlmwjk=";
11
11
+
sha256 = "sha256-nGC8Um9GutJZXlUcUCK0IiHxMaZmeoe4febw/jC2dRU=";
12
12
};
13
13
14
14
-
nativeBuildInputs = [ cmake pkg-config pandoc ];
14
14
+
nativeBuildInputs = [ cmake pkg-config ];
15
15
buildInputs = [ icu ];
16
16
17
17
-
outputs = [ "out" "lib" "dev" "man" ];
17
17
+
outputs = [ "out" "lib" "dev" ];
18
18
19
19
postPatch = ''
20
20
rm -rf external/Catch2
21
21
ln -sf ${catch2.src} external/Catch2
22
22
'';
23
23
24
24
-
postInstall = ''
25
25
-
rm -rf $out/share/doc
26
26
-
'';
27
27
-
28
24
meta = with lib; {
29
25
description = "Free and open source C++ spell checking library";
30
26
homepage = "https://nuspell.github.io/";
31
27
platforms = platforms.all;
32
28
maintainers = with maintainers; [ fpletz ];
33
29
license = licenses.lgpl3Plus;
30
30
+
changelog = "https://github.com/nuspell/nuspell/blob/v${version}/CHANGELOG.md";
34
31
};
35
32
}