about summary refs log tree commit diff
path: root/pkgs/tools/text/tidy-html5/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/tidy-html5/default.nix')
-rw-r--r--pkgs/tools/text/tidy-html5/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/tools/text/tidy-html5/default.nix b/pkgs/tools/text/tidy-html5/default.nix
deleted file mode 100644
index ef3bcc46ba73..000000000000
--- a/pkgs/tools/text/tidy-html5/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, lib, cmake, fetchFromGitHub, libxslt, ... }:
-
-stdenv.mkDerivation rec {
-
-  name = "tidy-html5";
-  version = "4.9.30";
-
-  src = fetchFromGitHub {
-    owner = "htacg";
-    repo = "tidy-html5";
-    rev = version;
-    sha256 = "0hd4c23352r5lnh23mx137wb4mkxcjdrl1dy8kgghszik5fprs3s";
-  };
-
-  buildInputs = [ cmake libxslt ];
-
-  meta = with stdenv.lib; {
-    description = "The granddaddy of HTML tools, with support for modern standards";
-    homepage = "http://www.html-tidy.org/";
-    license = licenses.w3c;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ edwtjo ];
-  };
-
-}