nixpkgs/pkgs/desktops/xfce/applications/xfce4-screenshooter/default.nix
José Romildo Malaquias af3c62be07
xfce.xfce4-screenshooter: 1.9.10 -> 1.9.11 (#186429)
* xfce.xfce4-screenshooter: reformat nix expression

* xfce.xfce4-screenshooter: 1.9.10 -> 1.9.11
2022-08-18 19:37:36 +02:00

35 lines
572 B
Nix

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