summary refs log tree commit diff
path: root/pkgs/applications/window-managers/trayer/default.nix
blob: 9b9017420c020accefa07edfdf5e595e78db8985 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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;
  };
}