mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
17 lines
455 B
Nix
17 lines
455 B
Nix
{ 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 = {
|
|
description = "Screenshot utility for the Xfce desktop";
|
|
};
|
|
}
|