diff options
author | lassulus <lass@aidsballs.de> | 2016-11-06 12:47:11 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-11-06 12:47:11 +0100 |
commit | 9b0874ceee9b3736942ddc2b549636307033c78b (patch) | |
tree | 9b2bc0d1bdeb5eb5fda1e819faf8d2bdd6b71e36 /krebs/5pkgs/haskell-overrides/hyphenation.nix | |
parent | be75882a3b9ad9b6cab14be73f551c4f9dafce39 (diff) | |
parent | 174c7ab9bd60d948c494d42621cdc85fde8ac318 (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'krebs/5pkgs/haskell-overrides/hyphenation.nix')
-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; +} |