nixpkgs/pkgs/development/libraries/hspell/default.nix
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00

27 lines
620 B
Nix

{ stdenv, fetchurl, perl, zlib }:
stdenv.mkDerivation rec {
name = "${passthru.pname}-${passthru.version}";
passthru = {
pname = "hspell";
version = "1.1";
};
src = fetchurl {
url = "${meta.homepage}${name}.tar.gz";
sha256 = "08x7rigq5pa1pfpl30qp353hbdkpadr1zc49slpczhsn0sg36pd6";
};
patchPhase = ''patchShebangs .'';
buildInputs = [ perl zlib ];
meta = {
description = "Hebrew spell checker";
homepage = http://hspell.ivrix.org.il/;
platforms = stdenv.lib.platforms.all;
maintainers = [ ];
# Note that I don't speak hebrew, so I can only fix compile problems
};
}