nixpkgs/pkgs/applications/window-managers/trayer/default.nix
Shea Levy ca116f76f9 Unmaintain a bunch of packages
Trying to take maintainership more seriously...

Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 22:34:41 -05:00

27 lines
636 B
Nix

{ stdenv, fetchurl, pkgconfig, gdk_pixbuf, gtk, libXmu }:
stdenv.mkDerivation rec {
name = "trayer-1.1.5";
buildInputs = [ pkgconfig gdk_pixbuf gtk libXmu ];
src = fetchurl {
url = "https://github.com/sargon/trayer-srg/tarball/${name}";
name = "${name}.tar.gz";
sha256 = "98804500188c0bb99c7389ebea4b2e4dfffa2f3d06dc97e633b4934cf7c29757";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = {
homepage = http://github.com/sargon/trayer-srg;
license = "bsd";
description = "A lightweight GTK2-based systray for UNIX desktop";
platforms = stdenv.lib.platforms.linux;
};
}