nixpkgs/pkgs/development/libraries/tidyp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
779 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-09-12 11:17:50 +03:00
stdenv.mkDerivation rec {
pname = "tidyp";
version = "1.04";
2015-09-12 11:17:50 +03:00
src = fetchurl {
# downloads from a legacy GitHub download page from ~11 years ago
# project does not work with autoconf anymore and the configure script cannot be generated from the source download
url = "https://github.com/downloads/petdance/tidyp/${pname}-${version}.tar.gz";
sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10";
2015-09-12 11:17:50 +03:00
};
hardeningDisable = [ "format" ];
2016-02-11 04:02:46 +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";
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
};
}