2021-01-15 07:29:18 +00:00
|
|
|
{ lib, stdenv, fetchurl, libxml2 }:
|
2009-09-16 12:25:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2022-03-07 11:20:07 +00:00
|
|
|
pname = "xhtml1";
|
|
|
|
version = "unstable-2002-08-01";
|
2009-09-16 12:25:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-07 11:20:07 +00:00
|
|
|
url = "https://www.w3.org/TR/xhtml1/xhtml1.tgz";
|
2009-09-16 12:25:22 +00:00
|
|
|
sha256 = "0rr0d89i0z75qvjbm8il93bippx09hbmjwy0y2sj44n9np69x3hl";
|
|
|
|
};
|
|
|
|
|
2017-11-27 18:34:19 +00:00
|
|
|
nativeBuildInputs = [ libxml2 ];
|
2009-09-16 12:25:22 +00:00
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/xml/dtd/xhtml1
|
2009-09-16 12:25:22 +00:00
|
|
|
cp DTD/*.ent DTD/*.dtd $out/xml/dtd/xhtml1
|
|
|
|
|
|
|
|
# Generate an XML catalog.
|
|
|
|
cat=$out/xml/dtd/xhtml1/catalog.xml
|
|
|
|
xmlcatalog --noout --create $cat
|
|
|
|
grep PUBLIC DTD/*.soc | while read x; do
|
|
|
|
eval a=($x)
|
2021-01-21 00:55:55 +00:00
|
|
|
xmlcatalog --noout --add public "''${a[1]}" "''${a[2]}" $cat
|
2009-09-16 12:25:22 +00:00
|
|
|
done
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
meta = {
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://www.w3.org/TR/xhtml1/";
|
2009-09-16 12:25:22 +00:00
|
|
|
description = "DTDs for XHTML 1.0, the Extensible HyperText Markup Language";
|
2021-01-15 07:29:18 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2009-09-16 12:25:22 +00:00
|
|
|
};
|
|
|
|
}
|