html-tidy: 5.0.0 -> 5.2.0

This commit is contained in:
Robin Gloster 2017-01-23 01:34:41 +01:00
parent bcfca9224f
commit 61f893fb64
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, cmake, libxslt }:
{ stdenv, fetchFromGitHub, cmake, libxslt }:
let
version = "5.0.0";
in
stdenv.mkDerivation rec {
name = "html-tidy-${version}";
version = "5.2.0";
src = fetchurl {
url = "https://github.com/htacg/tidy-html5/archive/${version}.tar.gz";
sha256 = "1qz7hgk482496agngp9grz4jqkyxrp29r2ywbccc9i5198yspca4";
src = fetchFromGitHub {
owner = "htacg";
repo = "tidy-html5";
rev = version;
sha256 = "1yxp3kjsxd5zwwn4r5rpyq5ndyylbcnb9pisdyf7dxjqd47z64bc";
};
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];