1 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2 <xsl:output method="xml" omit-xml-declaration="no" indent="yes" />
4 <xsl:template match='node() | @*'>
6 <xsl:apply-templates select='node() | @*'/>
10 <xsl:template match='//text()[starts-with(., "@nixStore@")]'>
11 <xsl:value-of select='concat("@out@", substring-after(substring-after(., "@nixStore@"), "/"))'/>