summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/hyphenation.nix
blob: 6e5fe9455dc18d41d9a480e0c575fc8546abac7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}