hunspell: switch to fetchFromGitHub

This commit is contained in:
Felix Buehler 2022-01-04 16:40:24 +01:00
parent 6b1ea4c5bd
commit 7e2fff28e7

View file

@ -1,12 +1,14 @@
{ lib, stdenv, fetchurl, fetchpatch, ncurses, readline, autoreconfHook }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, readline, autoreconfHook }:
stdenv.mkDerivation rec {
version = "1.7.0";
pname = "hunspell";
src = fetchurl {
url = "https://github.com/hunspell/hunspell/archive/v${version}.tar.gz";
sha256 = "12mwwqz6qkx7q1lg9vpjiiwh4fk4c8xs6g6g0xa2ia0hp5pbh9xv";
src = fetchFromGitHub {
owner = "hunspell";
repo = "hunspell";
rev = "v${version}";
sha256 = "sha256-YSJztik0QTZFNR8k8Xu1hakyE16NziDavYVkEUCbtGM=";
};
outputs = [ "bin" "dev" "out" "man" ];