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:
parent
e77ca2a665
commit
6fbeecbd00
17
pkgs/development/libraries/tidyp/default.nix
Normal file
17
pkgs/development/libraries/tidyp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue