summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2018-10-06 22:06:38 +0200
committertv <tv@krebsco.de>2018-10-06 22:06:38 +0200
commit2fdb6069470d30ab708b1897fbda78b1b8ac7605 (patch)
tree74e8397fc313ead81f48d5007d8849e44fc8bd4d
parenta0cc393b03b39d9412b2e4b783ff4f0475537f7c (diff)
hyphenation: RIP; nixpkgs is good enough
-rw-r--r--krebs/5pkgs/haskell/hyphenation.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/krebs/5pkgs/haskell/hyphenation.nix b/krebs/5pkgs/haskell/hyphenation.nix
deleted file mode 100644
index 6e5fe9455..000000000
--- a/krebs/5pkgs/haskell/hyphenation.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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;
-}