···1+{ stdenv, fetchurl }:
2+3+stdenv.mkDerivation rec {
4+ name = "tidyp-1.04";
5+6+ src = fetchurl {
7+ url = "https://github.com/downloads/petdance/tidyp/${name}.tar.gz";
8+ sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10";
9+ };
10+11+ meta = with stdenv.lib; {
12+ description = "A program that can validate your HTML, as well as modify it to be more clean and standard";
13+ homepage = http://tidyp.com/;
14+ platforms = platforms.linux;
15+ maintainers = with maintainers; [ pSub ];
16+ };
17+}