Add trayer
svn path=/nixpkgs/trunk/; revision=28558
This commit is contained in:
parent
23945e96b6
commit
20e64a52b9
28
pkgs/applications/window-managers/trayer/default.nix
Normal file
28
pkgs/applications/window-managers/trayer/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gdk_pixbuf, gtk, libXmu }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "trayer-1.1.3";
|
||||
|
||||
buildInputs = [ pkgconfig gdk_pixbuf gtk libXmu ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/sargon/trayer-srg/tarball/${name}";
|
||||
name = "${name}.tar.gz";
|
||||
sha256 = "03be5ea47278ecdb6ffb1d3b5115a855a6eccd6aa6702b84e89ee047ddd76558";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
homepage = http://github.com/sargon/trayer-srg;
|
||||
|
||||
license = "bsd";
|
||||
|
||||
description = "A lightweight GTK2-based systray for UNIX desktop";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -7244,6 +7244,10 @@ let
|
||||
|
||||
transmission = callPackage ../applications/networking/p2p/transmission { };
|
||||
|
||||
trayer = callPackage ../applications/window-managers/trayer {
|
||||
inherit (gtkLibs) gdk_pixbuf;
|
||||
};
|
||||
|
||||
tree = callPackage ../tools/system/tree { };
|
||||
|
||||
tribler = callPackage ../applications/networking/p2p/tribler { };
|
||||
|
Loading…
Reference in New Issue
Block a user