ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
13 lines
366 B
Nix
13 lines
366 B
Nix
{ mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libisofs, libxfce4ui, libxslt }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfburn";
|
|
version = "0.5.5";
|
|
|
|
sha256 = "1lmv48vqrlap1a2ha72g16vqly18zvcwj8y3f3f00l10pmn52bkp";
|
|
|
|
nativeBuildInputs = [ libxslt docbook_xsl ];
|
|
buildInputs = [ exo gtk2 libburn libisofs libxfce4ui ];
|
|
meta.broken = true;
|
|
}
|