summary refs log tree commit diff
path: root/pkgs/games/freeorion/fix-paths.xslt
blob: f0db646b81ad569dbd384f7133dcf689f28fafba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" omit-xml-declaration="no" indent="yes" />

  <xsl:template match='node() | @*'>
    <xsl:copy>
      <xsl:apply-templates select='node() | @*'/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match='//text()[starts-with(., "@nixStore@")]'>
    <xsl:value-of select='concat("@out@", substring-after(substring-after(., "@nixStore@"), "/"))'/>
  </xsl:template>
</xsl:stylesheet>