2021-01-21 20:00:13 +03:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2015-09-12 11:17:50 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tidyp-1.04";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/downloads/petdance/tidyp/${name}.tar.gz";
|
|
|
|
sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10";
|
|
|
|
};
|
|
|
|
|
2016-02-26 20:38:15 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 04:02:46 +03:00
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2015-09-12 11:17:50 +03:00
|
|
|
description = "A program that can validate your HTML, as well as modify it to be more clean and standard";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://tidyp.com/";
|
2021-03-12 08:21:05 +03:00
|
|
|
platforms = platforms.all;
|
2015-09-12 11:17:50 +03:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2018-10-27 16:50:00 +03:00
|
|
|
license = licenses.bsd3;
|
2015-09-12 11:17:50 +03:00
|
|
|
};
|
|
|
|
}
|