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.
18 lines
468 B
Nix
18 lines
468 B
Nix
{ mkXfceDerivation, automakeAddFlags, exo, gtk3, glib, libexif
|
|
, libxfce4ui, libxfce4util, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "ristretto";
|
|
version = "0.10.0";
|
|
|
|
sha256 = "07h7wbq3xh2ac6q4kp2ai1incfn0zfxxngap7hzqx47a5xw2mrm8";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ glib gtk3 libexif libxfce4ui libxfce4util xfconf ];
|
|
|
|
meta = {
|
|
description = "A fast and lightweight picture-viewer for the Xfce desktop environment";
|
|
};
|
|
}
|