···11+{ stdenv, fetchurl }:
22+33+stdenv.mkDerivation rec {
44+ name = "tidyp-1.04";
55+66+ src = fetchurl {
77+ url = "https://github.com/downloads/petdance/tidyp/${name}.tar.gz";
88+ sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10";
99+ };
1010+1111+ meta = with stdenv.lib; {
1212+ description = "A program that can validate your HTML, as well as modify it to be more clean and standard";
1313+ homepage = http://tidyp.com/;
1414+ platforms = platforms.linux;
1515+ maintainers = with maintainers; [ pSub ];
1616+ };
1717+}