depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/ristretto/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

35 lines
642 B
Nix

{ lib
, mkXfceDerivation
, gtk3
, glib
, libexif
, libxfce4ui
, libxfce4util
, xfconf
}:
mkXfceDerivation {
category = "apps";
pname = "ristretto";
version = "0.13.2";
odd-unstable = false;
sha256 = "sha256-FKgNKQ2l4FGvEvmppf+RTxMXU6TfsZVFBVii4zr4ASc=";
buildInputs = [
glib
gtk3
libexif
libxfce4ui
libxfce4util
xfconf
];
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = with lib; {
description = "Fast and lightweight picture-viewer for the Xfce desktop environment";
mainProgram = "ristretto";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}