summary refs log tree commit diff
path: root/pkgs/development/libraries/enchant
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-09-12 15:08:04 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-09-12 15:08:04 +0200
commit1510876ee95c5be8610b5e24cb89f1308ccc88be (patch)
tree978ba184229220824bc9c7196f440518e38df327 /pkgs/development/libraries/enchant
parentf16e6f5f66fa6cc4e7ba63b62de778c25da94d3b (diff)
downloadnixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar.gz
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar.bz2
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar.lz
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar.xz
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.tar.zst
nixpkgs-1510876ee95c5be8610b5e24cb89f1308ccc88be.zip
enchant: 2.2.10 → 2.2.11
https://github.com/AbiWord/enchant/releases/tag/v2.2.11
Diffstat (limited to 'pkgs/development/libraries/enchant')
-rw-r--r--pkgs/development/libraries/enchant/2.x.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/enchant/2.x.nix b/pkgs/development/libraries/enchant/2.x.nix
index 5788bbe9c17..b7b86de92c0 100644
--- a/pkgs/development/libraries/enchant/2.x.nix
+++ b/pkgs/development/libraries/enchant/2.x.nix
@@ -1,7 +1,7 @@
 { stdenv
 , fetchurl
 , aspell
-, pkgconfig
+, pkg-config
 , glib
 , hunspell
 , hspell
@@ -10,17 +10,17 @@
 
 stdenv.mkDerivation rec {
   pname = "enchant";
-  version = "2.2.10";
+  version = "2.2.11";
 
   outputs = [ "out" "dev" ];
 
   src = fetchurl {
     url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
-    sha256 = "1hxx5kb015a5rvjimrpcb5050xb3988dgc52fd5m5n270v238nva";
+    sha256 = "opxXd8TkX8rCWVwVxJ1tKqQ0+l58mT3/P582e2X+Ryo=";
   };
 
   nativeBuildInputs = [
-    pkgconfig
+    pkg-config
   ];
 
   buildInputs = [