summary refs log tree commit diff
path: root/pkgs/development/libraries/tidyp/default.nix
blob: c676f8f0174d8b87d8115efcebb3317104125e45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "tidyp";
  version = "1.04";

  src = fetchFromGitHub {
    owner = "petdance";
    repo = "tidyp";
    rev = version;
    sha256 = "0jslskziwzk4hb6i640fvpnbv2zxrvim6pdx2gwx5wyc64aviskc";
  };

  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "A program that can validate your HTML, as well as modify it to be more clean and standard";
    homepage = "http://tidyp.com/";
    platforms = platforms.all;
    maintainers = with maintainers; [ pSub ];
    license = licenses.bsd3;
  };
}