Merge pull request #104291 from bbigras/nuspell

nuspell: 4.0.1 -> 4.2.0
wip/yesman
Sandro 4 years ago committed by GitHub
commit 747ead1c74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/development/libraries/nuspell/default.nix

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, boost, icu, catch2, pandoc }:
{ stdenv, fetchFromGitHub, cmake, pkgconfig, icu, catch2, pandoc }:
stdenv.mkDerivation rec {
pname = "nuspell";
version = "4.0.1";
version = "4.2.0";
src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
sha256 = "1p90a3wv4b8m5fdpbnr9cyd1x3a504q9rc4cghq02xff63h5gclf";
sha256 = "sha256-sQ3Q2+FOf2bXCKcgd6XvEb+QZzzDccs/4+CpJbEd1PQ=";
};
nativeBuildInputs = [ cmake pkgconfig pandoc ];
buildInputs = [ boost icu ];
buildInputs = [ icu ];
outputs = [ "out" "lib" "dev" "man" ];

Loading…
Cancel
Save