Merge pull request #10870 from zimbatm/fix/tidy-html5

tidy-html5: fix missing dependency
This commit is contained in:
Domen Kožar 2015-11-07 20:48:01 +01:00
commit 9af0c23883

View file

@ -1,4 +1,4 @@
{ stdenv, lib, cmake, fetchFromGitHub, ... }:
{ stdenv, lib, cmake, fetchFromGitHub, libxslt, ... }:
stdenv.mkDerivation rec {
@ -12,12 +12,13 @@ stdenv.mkDerivation rec {
sha256 = "0hd4c23352r5lnh23mx137wb4mkxcjdrl1dy8kgghszik5fprs3s";
};
buildInputs = [ cmake ];
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 ];
};