commit
d1e6e1c6b4
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/misc/xmenu/default.nix
Normal file
25
pkgs/applications/misc/xmenu/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub, imlib2, libX11, libXft, libXinerama }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xmenu";
|
||||
version = "4.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "phillbush";
|
||||
repo = "xmenu";
|
||||
rev = "v${version}";
|
||||
sha256 = "0m97w1nwak5drcxxlyisqb73fxkapy2rlph9mg531kbx3k2h30r1";
|
||||
};
|
||||
|
||||
buildInputs = [ imlib2 libX11 libXft libXinerama ];
|
||||
|
||||
postPatch = "sed -i \"s:/usr/local:$out:\" config.mk";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "XMenu is a menu utility for X";
|
||||
homepage = "https://github.com/phillbush/xmenu";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ neonfuz ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -23910,6 +23910,8 @@ in
|
|||
|
||||
xmacro = callPackage ../tools/X11/xmacro { };
|
||||
|
||||
xmenu = callPackage ../applications/misc/xmenu { };
|
||||
|
||||
xmlcopyeditor = callPackage ../applications/editors/xmlcopyeditor { };
|
||||
|
||||
xmp = callPackage ../applications/audio/xmp { };
|
||||
|
|
Loading…
Reference in a new issue