forked from mirrors/nixpkgs
xfce: add xfce screenshooter
This commit is contained in:
parent
d3d988b768
commit
78d3180dbe
|
@ -60,6 +60,7 @@ in
|
|||
pkgs.xfce.xfce4session
|
||||
pkgs.xfce.xfce4settings
|
||||
pkgs.xfce.xfce4mixer
|
||||
pkgs.xfce.xfce4screenshooter
|
||||
pkgs.xfce.xfconf
|
||||
pkgs.xfce.xfdesktop
|
||||
pkgs.xfce.xfwm4
|
||||
|
|
24
pkgs/desktops/xfce/applications/xfce4-screenshooter.nix
Normal file
24
pkgs/desktops/xfce/applications/xfce4-screenshooter.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, xfce4panel, libxfce4util, gtk, libsoup
|
||||
, exo}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-screenshooter";
|
||||
ver_maj = "1.8";
|
||||
ver_min = "1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2";
|
||||
sha256 = "40419892bd28989315eed053c159bba0f4264ed8c6c6738806024e481eab9492";
|
||||
};
|
||||
name = "${p_name}-${ver_maj}.${ver_min}";
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig intltool xfce4panel libxfce4util gtk libsoup exo
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://goodies.xfce.org/projects/applications/xfce4-screenshooter;
|
||||
description = "Xfce screenshooter";
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
|
@ -48,6 +48,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
|||
xfce4notifyd = callPackage ./applications/xfce4-notifyd.nix { };
|
||||
xfce4taskmanager= callPackage ./applications/xfce4-taskmanager.nix { };
|
||||
xfce4terminal = callPackage ./applications/terminal.nix { };
|
||||
xfce4screenshooter = callPackage ./applications/xfce4-screenshooter.nix { };
|
||||
|
||||
#### ART from "mirror://xfce/src/art/${p_name}/${ver_maj}/${name}.tar.bz2"
|
||||
|
||||
|
|
Loading…
Reference in a new issue