Merge pull request #10870 from zimbatm/fix/tidy-html5
tidy-html5: fix missing dependency
This commit is contained in:
commit
9af0c23883
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, cmake, fetchFromGitHub, ... }:
|
{ stdenv, lib, cmake, fetchFromGitHub, libxslt, ... }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
@ -12,12 +12,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0hd4c23352r5lnh23mx137wb4mkxcjdrl1dy8kgghszik5fprs3s";
|
sha256 = "0hd4c23352r5lnh23mx137wb4mkxcjdrl1dy8kgghszik5fprs3s";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ];
|
buildInputs = [ cmake libxslt ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "The granddaddy of HTML tools, with support for modern standards";
|
description = "The granddaddy of HTML tools, with support for modern standards";
|
||||||
homepage = "http://www.html-tidy.org/";
|
homepage = "http://www.html-tidy.org/";
|
||||||
license = licenses.w3c;
|
license = licenses.w3c;
|
||||||
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue