mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
html-tidy: 5.0.0 -> 5.2.0
This commit is contained in:
parent
bcfca9224f
commit
61f893fb64
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, fetchurl, cmake, libxslt }:
|
{ stdenv, fetchFromGitHub, cmake, libxslt }:
|
||||||
|
|
||||||
let
|
|
||||||
version = "5.0.0";
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "html-tidy-${version}";
|
name = "html-tidy-${version}";
|
||||||
|
version = "5.2.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/htacg/tidy-html5/archive/${version}.tar.gz";
|
owner = "htacg";
|
||||||
sha256 = "1qz7hgk482496agngp9grz4jqkyxrp29r2ywbccc9i5198yspca4";
|
repo = "tidy-html5";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1yxp3kjsxd5zwwn4r5rpyq5ndyylbcnb9pisdyf7dxjqd47z64bc";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
|
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
|
||||||
|
Loading…
Reference in New Issue
Block a user