3
0
Fork 0
forked from mirrors/nixpkgs

xfce: add xfce screenshooter

This commit is contained in:
Jaka Hudoklin 2014-01-12 23:31:22 +01:00 committed by Rok Garbas
parent d3d988b768
commit 78d3180dbe
3 changed files with 26 additions and 0 deletions

View file

@ -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

View 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+";
};
}

View file

@ -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"