mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
fae8ec30ea
to prevent future regressen add a smal test, to check if ps2pdf plugin is working by createing a .ps / .eps file and converting it back to svg
28 lines
665 B
Nix
28 lines
665 B
Nix
{ inkscape, runCommand, writeTextFile }:
|
|
|
|
let
|
|
svg_file = writeTextFile {
|
|
name = "test.svg";
|
|
text = ''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg width="50" height="50" version="1.1">
|
|
<ellipse cx="1" cy="1" rx="1" ry="1" />
|
|
</svg>'';
|
|
};
|
|
in
|
|
runCommand "inkscape-test-eps"
|
|
{
|
|
nativeBuildInputs = [ inkscape ];
|
|
} ''
|
|
echo ps test
|
|
inkscape ${svg_file} --export-type=ps -o test.ps
|
|
inkscape test.ps -o test.ps.svg
|
|
|
|
echo eps test
|
|
inkscape ${svg_file} --export-type=eps -o test.eps
|
|
inkscape test.eps -o test.eps.svg
|
|
|
|
# inkscape does not return an error code, only does not create files
|
|
[[ -f test.ps.svg && -f test.eps.svg ]] && touch $out
|
|
''
|