| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  | { pkgs }: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  | with pkgs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  | # emscripten toolchain abstraction for nix | 
					
						
							|  |  |  | # https://github.com/NixOS/nixpkgs/pull/16208 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  | rec { | 
					
						
							|  |  |  |   json_c = (pkgs.json_c.override { | 
					
						
							|  |  |  |     stdenv = pkgs.emscriptenStdenv; | 
					
						
							|  |  |  |   }).overrideDerivation | 
					
						
							|  |  |  |     (old: { | 
					
						
							|  |  |  |       nativeBuildInputs = [ autoreconfHook pkgconfig ]; | 
					
						
							|  |  |  |       propagatedBuildInputs = [ zlib ]; | 
					
						
							|  |  |  |       buildInputs = old.buildInputs ++ [ automake autoconf ]; | 
					
						
							|  |  |  |       configurePhase = ''
 | 
					
						
							|  |  |  |         HOME=$TMPDIR | 
					
						
							|  |  |  |         emconfigure ./configure --prefix=$out  | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |       checkPhase = ''
 | 
					
						
							|  |  |  |         echo "================= testing json_c using node =================" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         echo "Compiling a custom test" | 
					
						
							|  |  |  |         set -x | 
					
						
							|  |  |  |         emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 tests/test1.c \ | 
					
						
							|  |  |  |           `pkg-config zlib --cflags` \ | 
					
						
							|  |  |  |           `pkg-config zlib --libs` \ | 
					
						
							|  |  |  |           -I . \ | 
					
						
							|  |  |  |           .libs/libjson-c.so \ | 
					
						
							|  |  |  |           -o ./test1.js | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         echo "Using node to execute the test which basically outputs an error on stderr which we grep for"  | 
					
						
							|  |  |  |         ${pkgs.nodejs}/bin/node ./test1.js  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         set +x | 
					
						
							|  |  |  |         if [ $? -ne 0 ]; then | 
					
						
							|  |  |  |           echo "test1.js execution failed -> unit test failed, please fix" | 
					
						
							|  |  |  |           exit 1; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           echo "test1.js execution seems to work! very good." | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         echo "================= /testing json_c using node =================" | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |    | 
					
						
							|  |  |  |   libxml2 = (pkgs.libxml2.override { | 
					
						
							|  |  |  |     stdenv = emscriptenStdenv; | 
					
						
							| 
									
										
										
										
											2016-11-08 10:55:21 +01:00
										 |  |  |     pythonSupport = false; | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |   }).overrideDerivation | 
					
						
							|  |  |  |     (old: {  | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |       propagatedBuildInputs = [ zlib ]; | 
					
						
							|  |  |  |       buildInputs = old.buildInputs ++ [ pkgconfig ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |       # just override it with nothing so it does not fail | 
					
						
							|  |  |  |       autoreconfPhase = "echo autoreconfPhase not used...";  | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |       configurePhase = ''
 | 
					
						
							|  |  |  |         HOME=$TMPDIR | 
					
						
							|  |  |  |         emconfigure ./configure --prefix=$out --without-python | 
					
						
							|  |  |  |       '';
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |       checkPhase = ''
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |         echo "================= testing libxml2 using node =================" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         echo "Compiling a custom test" | 
					
						
							|  |  |  |         set -x | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |         emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 xmllint.o \ | 
					
						
							|  |  |  |         ./.libs/libxml2.a `pkg-config zlib --cflags` `pkg-config zlib --libs` -o ./xmllint.test.js \ | 
					
						
							|  |  |  |         --embed-file ./test/xmlid/id_err1.xml   | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         echo "Using node to execute the test which basically outputs an error on stderr which we grep for"  | 
					
						
							|  |  |  |         ${pkgs.nodejs}/bin/node ./xmllint.test.js --noout test/xmlid/id_err1.xml 2>&1 | grep 0bar    | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         set +x | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |         if [ $? -ne 0 ]; then | 
					
						
							|  |  |  |           echo "xmllint unit test failed, please fix this package" | 
					
						
							|  |  |  |           exit 1; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           echo "since there is no stupid text containing 'foo xml:id' it seems to work! very good." | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |         echo "================= /testing libxml2 using node =================" | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |       '';
 | 
					
						
							|  |  |  |     });             | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |   xmlmirror = pkgs.buildEmscriptenPackage rec { | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |     name = "xmlmirror"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |     buildInputs = [ pkgconfig autoconf automake libtool gnumake libxml2 nodejs openjdk json_c ]; | 
					
						
							|  |  |  |     nativeBuildInputs = [ pkgconfig zlib ]; | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |     src = pkgs.fetchgit { | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |       url = "https://gitlab.com/odfplugfest/xmlmirror.git"; | 
					
						
							|  |  |  |       rev = "4fd7e86f7c9526b8f4c1733e5c8b45175860a8fd"; | 
					
						
							|  |  |  |       sha256 = "1jasdqnbdnb83wbcnyrp32f36w3xwhwp0wq8lwwmhqagxrij1r4b"; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |       | 
					
						
							|  |  |  |     configurePhase = ''
 | 
					
						
							|  |  |  |       rm -f fastXmlLint.js* | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |       # a fix for ERROR:root:For asm.js, TOTAL_MEMORY must be a multiple of 16MB, was 234217728 | 
					
						
							|  |  |  |       # https://gitlab.com/odfplugfest/xmlmirror/issues/8 | 
					
						
							|  |  |  |       sed -e "s/TOTAL_MEMORY=234217728/TOTAL_MEMORY=268435456/g" -i Makefile.emEnv | 
					
						
							|  |  |  |       # https://github.com/kripken/emscripten/issues/6344 | 
					
						
							|  |  |  |       # https://gitlab.com/odfplugfest/xmlmirror/issues/9 | 
					
						
							|  |  |  |       sed -e "s/\$(JSONC_LDFLAGS) \$(ZLIB_LDFLAGS) \$(LIBXML20_LDFLAGS)/\$(JSONC_LDFLAGS) \$(LIBXML20_LDFLAGS) \$(ZLIB_LDFLAGS) /g" -i Makefile.emEnv | 
					
						
							|  |  |  |       # https://gitlab.com/odfplugfest/xmlmirror/issues/11 | 
					
						
							|  |  |  |       sed -e "s/-o fastXmlLint.js/-s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\"]' -o fastXmlLint.js/g" -i Makefile.emEnv | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |     '';
 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     buildPhase = ''
 | 
					
						
							|  |  |  |       HOME=$TMPDIR | 
					
						
							|  |  |  |       make -f Makefile.emEnv | 
					
						
							|  |  |  |     '';
 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     outputs = [ "out" "doc" ]; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     installPhase = ''
 | 
					
						
							|  |  |  |       mkdir -p $out/share | 
					
						
							| 
									
										
										
										
											2016-08-29 23:08:46 +02:00
										 |  |  |       mkdir -p $doc/share/${name} | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |        | 
					
						
							|  |  |  |       cp Demo* $out/share | 
					
						
							|  |  |  |       cp -R codemirror-5.12 $out/share | 
					
						
							|  |  |  |       cp fastXmlLint.js* $out/share | 
					
						
							|  |  |  |       cp *.xsd $out/share | 
					
						
							|  |  |  |       cp *.js $out/share | 
					
						
							|  |  |  |       cp *.xhtml $out/share | 
					
						
							|  |  |  |       cp *.html $out/share | 
					
						
							|  |  |  |       cp *.json $out/share | 
					
						
							|  |  |  |       cp *.rng $out/share | 
					
						
							| 
									
										
										
										
											2016-08-29 23:08:46 +02:00
										 |  |  |       cp README.md $doc/share/${name} | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |     checkPhase = ''
 | 
					
						
							|  |  |  |        | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |     '';
 | 
					
						
							|  |  |  |   };   | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   zlib = (pkgs.zlib.override { | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |     stdenv = pkgs.emscriptenStdenv; | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |   }).overrideDerivation | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |     (old: rec {  | 
					
						
							|  |  |  |       buildInputs = old.buildInputs ++ [ pkgconfig ]; | 
					
						
							|  |  |  |       # we need to reset this setting! | 
					
						
							|  |  |  |       NIX_CFLAGS_COMPILE=""; | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |       configurePhase = ''
 | 
					
						
							|  |  |  |         # FIXME: Some tests require writing at $HOME | 
					
						
							|  |  |  |         HOME=$TMPDIR | 
					
						
							|  |  |  |         runHook preConfigure | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |         #export EMCC_DEBUG=2 | 
					
						
							|  |  |  |         emconfigure ./configure --prefix=$out --shared | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         runHook postConfigure | 
					
						
							|  |  |  |       '';
 | 
					
						
							| 
									
										
										
										
											2018-03-18 13:34:46 +01:00
										 |  |  |       dontStrip = true; | 
					
						
							|  |  |  |       outputs = [ "out" ]; | 
					
						
							|  |  |  |       buildPhase = ''
 | 
					
						
							|  |  |  |         emmake make | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |       installPhase = ''
 | 
					
						
							|  |  |  |         emmake make install | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |       checkPhase = ''
 | 
					
						
							|  |  |  |         echo "================= testing zlib using node =================" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         echo "Compiling a custom test" | 
					
						
							|  |  |  |         set -x | 
					
						
							|  |  |  |         emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 test/example.c -DZ_SOLO \ | 
					
						
							|  |  |  |         libz.so.${old.version} -I . -o example.js | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         echo "Using node to execute the test" | 
					
						
							|  |  |  |         ${pkgs.nodejs}/bin/node ./example.js  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         set +x | 
					
						
							|  |  |  |         if [ $? -ne 0 ]; then | 
					
						
							|  |  |  |           echo "test failed for some reason" | 
					
						
							|  |  |  |           exit 1; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           echo "it seems to work! very good." | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         echo "================= /testing zlib using node =================" | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       postPatch = pkgs.stdenv.lib.optionalString pkgs.stdenv.isDarwin ''
 | 
					
						
							| 
									
										
										
										
											2016-06-13 00:34:50 +02:00
										 |  |  |         substituteInPlace configure \ | 
					
						
							|  |  |  |           --replace '/usr/bin/libtool' 'ar' \ | 
					
						
							|  |  |  |           --replace 'AR="libtool"' 'AR="ar"' \ | 
					
						
							|  |  |  |           --replace 'ARFLAGS="-o"' 'ARFLAGS="-r"' | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |     });  | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  | } |