nixpkgs/pkgs/desktops/xfce/applications/ristretto/default.nix

18 lines
468 B
Nix
Raw Normal View History

2019-08-17 05:15:07 +02:00
{ mkXfceDerivation, automakeAddFlags, exo, gtk3, glib, libexif
2017-12-17 16:02:52 +01:00
, libxfce4ui, libxfce4util, xfconf }:
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "apps";
pname = "ristretto";
2019-08-12 12:38:41 +02:00
version = "0.10.0";
sha256 = "07h7wbq3xh2ac6q4kp2ai1incfn0zfxxngap7hzqx47a5xw2mrm8";
2017-12-17 16:02:52 +01:00
2019-08-17 05:15:07 +02:00
nativeBuildInputs = [ exo ];
buildInputs = [ glib gtk3 libexif libxfce4ui libxfce4util xfconf ];
meta = {
description = "A fast and lightweight picture-viewer for the Xfce desktop environment";
};
2017-12-17 16:02:52 +01:00
}