2020-07-28 18:48:04 +01:00
|
|
|
{ stdenv, fetchFromGitHub, imlib2, libX11, libXft, libXinerama }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xmenu";
|
2020-11-12 11:19:43 +00:00
|
|
|
version = "4.4.1";
|
2020-07-28 18:48:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phillbush";
|
|
|
|
repo = "xmenu";
|
|
|
|
rev = "v${version}";
|
2020-11-12 11:19:43 +00:00
|
|
|
sha256 = "1s70zvsaqnsjqs298vw3py0vcvia68xlks1wcz37pb88bwligz1x";
|
2020-07-28 18:48:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ imlib2 libX11 libXft libXinerama ];
|
|
|
|
|
|
|
|
postPatch = "sed -i \"s:/usr/local:$out:\" config.mk";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "A menu utility for X";
|
2020-07-28 18:48:04 +01:00
|
|
|
homepage = "https://github.com/phillbush/xmenu";
|
2020-11-12 11:19:43 +00:00
|
|
|
license = licenses.mit;
|
2020-07-28 18:48:04 +01:00
|
|
|
maintainers = with maintainers; [ neonfuz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|