19 lines
523 B
Nix
19 lines
523 B
Nix
{ mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libisofs, libxfce4ui, libxslt }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "apps";
|
|
pname = "xfburn";
|
|
version = "0.5.5";
|
|
|
|
postPatch = ''
|
|
substituteInPlace docs/Makefile.am \
|
|
--replace http://docbook.sourceforge.net/release/xsl/current \
|
|
${docbook_xsl}/share/xml/docbook-xsl
|
|
'';
|
|
|
|
sha256 = "1lmv48vqrlap1a2ha72g16vqly18zvcwj8y3f3f00l10pmn52bkp";
|
|
|
|
nativeBuildInputs = [ libxslt ];
|
|
buildInputs = [ exo gtk2 libburn libisofs libxfce4ui ];
|
|
}
|