depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/xfce4-screenshooter/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

34 lines
564 B
Nix

{ lib
, mkXfceDerivation
, exo
, libxml2
, libsoup_3
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
}:
mkXfceDerivation {
category = "apps";
pname = "xfce4-screenshooter";
version = "1.10.2";
odd-unstable = false;
sha256 = "sha256-UpfQgKcrxFm7VvMEVV4fsvRnJPZSLJWexx9lZlFWJW8=";
buildInputs = [
exo
libxml2
libsoup_3
libxfce4ui
libxfce4util
xfce4-panel
xfconf
];
meta = with lib; {
description = "Screenshot utility for the Xfce desktop";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}