about summary refs log tree commit diff
path: root/pkgs/development/libraries/aspell
diff options
context:
space:
mode:
authorOlli Helenius <liff@iki.fi>2019-01-05 13:59:25 +0200
committerOlli Helenius <liff@iki.fi>2019-01-05 13:59:25 +0200
commit3bcdff95a5f9304c40756e5ff11d18f2370bbfe2 (patch)
treef43397a3808cfb484bfca36ab99ee0a75e1c8095 /pkgs/development/libraries/aspell
parent3bfeecb981f30db3881bcbc33436c282cd5efe7b (diff)
aspell: use fetchzip instead of fetchTarball to fetch u-deva files
Diffstat (limited to 'pkgs/development/libraries/aspell')
-rw-r--r--pkgs/development/libraries/aspell/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/aspell/default.nix b/pkgs/development/libraries/aspell/default.nix
index 9ca57a2023726..5c3c6272f83d8 100644
--- a/pkgs/development/libraries/aspell/default.nix
+++ b/pkgs/development/libraries/aspell/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, perl
+{ stdenv, fetchurl, fetchpatch, fetchzip, perl
 , searchNixProfiles ? true
 }:
 
@@ -6,7 +6,8 @@ let
 
   # Source for u-deva.cmap and u-deva.cset: use the Marathi
   # dictionary like Debian does.
-  devaMapsSource = fetchTarball {
+  devaMapsSource = fetchzip {
+    name = "aspell-u-deva";
     url = "ftp://ftp.gnu.org/gnu/aspell/dict/mr/aspell6-mr-0.10-0.tar.bz2";
     sha256 = "1v8cdl8x2j1d4vbvsq1xrqys69bbccd6mi03fywrhkrrljviyri1";
   };