nixpkgs/pkgs/desktops/xfce/applications/xfce4-screenshooter/default.nix
2021-12-08 11:34:00 -03:00

18 lines
533 B
Nix

{ lib, mkXfceDerivation, exo, gtk3, libsoup, libxfce4ui, libxfce4util, xfce4-panel, glib-networking }:
mkXfceDerivation {
category = "apps";
pname = "xfce4-screenshooter";
version = "1.9.9";
odd-unstable = false;
sha256 = "sha256-QOYJl+bxRk0+spgtGADPgkw2lPLfQOwTZQuZNHWq39c=";
buildInputs = [ exo gtk3 libsoup libxfce4ui libxfce4util xfce4-panel glib-networking ];
meta = with lib; {
description = "Screenshot utility for the Xfce desktop";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}