mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
enchant: 2.2.3 -> 2.2.4
Clean up the expression and prepare for tests. Unfortunately, I could not get them pass.
This commit is contained in:
parent
5b4b6b6c24
commit
3c72fa7dda
@ -1,23 +1,24 @@
|
||||
{ stdenv, fetchurl, aspell, pkgconfig, glib, hunspell, hspell }:
|
||||
{ stdenv, fetchurl, aspell, pkgconfig, glib, hunspell, hspell, unittest-cpp }:
|
||||
|
||||
let
|
||||
version = "2.2.3";
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "enchant";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
version = "2.2.4";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${name}.tar.gz";
|
||||
sha256 = "0v87p1ls0gym95qirijpclk650sjbkcjjl6ssk059zswcwaykn5b";
|
||||
url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1p6a3qmrh8bjzds6x7rg9da0ir44gg804jzkf634h39wsa4vdmpm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ glib hunspell ];
|
||||
checkInputs = [ unittest-cpp ];
|
||||
propagatedBuildInputs = [ hspell aspell ]; # libtool puts it to la file
|
||||
|
||||
doCheck = false; # fails to compile with with "UnitTest++.h: No such file or directory"
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = false; # https://github.com/AbiWord/enchant/issues/219
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Generic spell checking library";
|
||||
|
Loading…
Reference in New Issue
Block a user