summary refs log tree commit diff
path: root/pkgs/applications/window-managers/trayer/default.nix
blob: 5c3d8710e35dc3013477d80519aea183098746cf (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
27
28
29
30
{ stdenv, fetchFromGitHub, pkgconfig, gdk-pixbuf, gtk2 }:

stdenv.mkDerivation rec {
  name = "trayer-1.1.8";

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gdk-pixbuf gtk2 ];

  src = fetchFromGitHub {
    owner = "sargon";
    repo = "trayer-srg";
    rev = name;
    sha256 = "1mvhwaqa9bng9wh3jg3b7y8gl7nprbydmhg963xg0r076jyzv0cg";
  };

  preConfigure = ''
    patchShebangs configure
  '';

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/sargon/trayer-srg";
    license = licenses.mit;
    description = "A lightweight GTK2-based systray for UNIX desktop";
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}