diff options
author | tv <tv@krebsco.de> | 2016-11-03 15:25:07 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-11-03 15:26:11 +0100 |
commit | 4f1625d5dc7024f6e5572abdcc511c9adbe49cfe (patch) | |
tree | 60aa81df557d005b43df7b22f258f11a989e0c55 /krebs/5pkgs | |
parent | 102d2515bcf4939f064ed791d09a2bf7aab2ff32 (diff) |
haskellPackages.hyphenation: init at 0.6
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/haskell-overrides/hyphenation.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/krebs/5pkgs/haskell-overrides/hyphenation.nix b/krebs/5pkgs/haskell-overrides/hyphenation.nix new file mode 100644 index 000000000..6e5fe9455 --- /dev/null +++ b/krebs/5pkgs/haskell-overrides/hyphenation.nix @@ -0,0 +1,17 @@ +# Same as upstream but with doCheck = false because doctest has wrong version. +{ mkDerivation, base, bytestring, containers, directory +, filepath, unordered-containers, zlib, stdenv +}: +mkDerivation { + pname = "hyphenation"; + version = "0.6"; + sha256 = "2f673666c18f63581422f7c6389b78b0ff754406671296a3d680d417942512f7"; + libraryHaskellDepends = [ + base bytestring containers unordered-containers zlib + ]; + homepage = "http://github.com/ekmett/hyphenation"; + description = "Configurable Knuth-Liang hyphenation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + doCheck = false; +} |