1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

tidyp: init at 1.04

This commit is contained in:
Pascal Wittmann 2015-09-12 10:17:50 +02:00
parent e77ca2a665
commit 6fbeecbd00
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "tidyp-1.04";
src = fetchurl {
url = "https://github.com/downloads/petdance/tidyp/${name}.tar.gz";
sha256 = "0f5ky0ih4vap9c6j312jn73vn8m2bj69pl2yd3a5nmv35k9zmc10";
};
meta = with stdenv.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.linux;
maintainers = with maintainers; [ pSub ];
};
}

View file

@ -8316,6 +8316,8 @@ let
thrift = callPackage ../development/libraries/thrift { };
tidyp = callPackage ../development/libraries/tidyp { };
tinyxml = tinyxml2;
tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { };