Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / applications / ristretto / default.nix
blob93941346dcc754c7cec8466d44c5352f76ce7845
1 { lib
2 , mkXfceDerivation
3 , gtk3
4 , glib
5 , libexif
6 , libxfce4ui
7 , libxfce4util
8 , xfconf
9 }:
11 mkXfceDerivation {
12   category = "apps";
13   pname = "ristretto";
14   version = "0.13.2";
15   odd-unstable = false;
17   sha256 = "sha256-FKgNKQ2l4FGvEvmppf+RTxMXU6TfsZVFBVii4zr4ASc=";
19   buildInputs = [
20     glib
21     gtk3
22     libexif
23     libxfce4ui
24     libxfce4util
25     xfconf
26   ];
28   env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
30   meta = with lib; {
31     description = "Fast and lightweight picture-viewer for the Xfce desktop environment";
32     mainProgram = "ristretto";
33     maintainers = with maintainers; [ ] ++ teams.xfce.members;
34   };