lol
1{ stdenv, fetchurl }:
2
3stdenv.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 hardeningDisable = [ "format" ];
12
13 meta = with stdenv.lib; {
14 description = "A program that can validate your HTML, as well as modify it to be more clean and standard";
15 homepage = http://tidyp.com/;
16 platforms = platforms.linux;
17 maintainers = with maintainers; [ pSub ];
18 };
19}