depot/third_party/nixpkgs/pkgs/by-name/xm/xmenu/package.nix

39 lines
711 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
imlib2,
libX11,
libXft,
libXinerama,
}:
stdenv.mkDerivation rec {
pname = "xmenu";
version = "4.5.5";
src = fetchFromGitHub {
owner = "phillbush";
repo = "xmenu";
rev = "v${version}";
sha256 = "sha256-Gg4hSBBVBOB/wlY44C5bJOuOnLoA/tPvcNZamXae/WE=";
};
buildInputs = [
imlib2
libX11
libXft
libXinerama
];
postPatch = "sed -i \"s:/usr/local:$out:\" config.mk";
meta = with lib; {
description = "Menu utility for X";
homepage = "https://github.com/phillbush/xmenu";
license = licenses.mit;
maintainers = with maintainers; [ neonfuz ];
platforms = platforms.all;
mainProgram = "xmenu";
};
}