nixpkgs/pkgs/applications/misc/xmenu/default.nix

26 lines
654 B
Nix
Raw Normal View History

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