mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
enchant: format with nixpkgs-fmt
This commit is contained in:
parent
ddefb5f067
commit
afb4fbb9ce
1 changed files with 28 additions and 5 deletions
|
@ -1,4 +1,12 @@
|
||||||
{ stdenv, fetchurl, aspell, pkgconfig, glib, hunspell, hspell, unittest-cpp }:
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, aspell
|
||||||
|
, pkgconfig
|
||||||
|
, glib
|
||||||
|
, hunspell
|
||||||
|
, hspell
|
||||||
|
, unittest-cpp
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "enchant";
|
pname = "enchant";
|
||||||
|
@ -11,10 +19,25 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1p6a3qmrh8bjzds6x7rg9da0ir44gg804jzkf634h39wsa4vdmpm";
|
sha256 = "1p6a3qmrh8bjzds6x7rg9da0ir44gg804jzkf634h39wsa4vdmpm";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
|
||||||
buildInputs = [ glib hunspell ];
|
nativeBuildInputs = [
|
||||||
checkInputs = [ unittest-cpp ];
|
pkgconfig
|
||||||
propagatedBuildInputs = [ hspell aspell ]; # libtool puts it to la file
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
hunspell
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
unittest-cpp
|
||||||
|
];
|
||||||
|
|
||||||
|
# libtool puts these to .la files
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hspell
|
||||||
|
aspell
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue