Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ lib, stdenv, fetchurl, fontconfig, libX11, libXinerama, libXft, pkg-config, zlib, writeText
|
|
, conf ? null, patches ? null
|
|
# update script dependencies
|
|
, gitUpdater }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dmenu";
|
|
version = "5.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/tools/dmenu-${version}.tar.gz";
|
|
sha256 = "sha256-Go9T5v0tdJg57IcMXiez4U2lw+6sv8uUXRWeHVQzeV8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ fontconfig libX11 libXinerama zlib libXft ];
|
|
|
|
inherit patches;
|
|
|
|
postPatch = let
|
|
configFile = if lib.isDerivation conf || builtins.isPath conf then
|
|
conf
|
|
else
|
|
writeText "config.def.h" conf;
|
|
in ''
|
|
sed -ri -e 's!\<(dmenu|dmenu_path|stest)\>!'"$out/bin"'/&!g' dmenu_run
|
|
sed -ri -e 's!\<stest\>!'"$out/bin"'/&!g' dmenu_path
|
|
${lib.optionalString (conf != null) "cp ${configFile} config.def.h"}
|
|
'';
|
|
|
|
preConfigure = ''
|
|
makeFlagsArray+=(
|
|
PREFIX="$out"
|
|
CC="$CC"
|
|
# default config.mk hardcodes dependent libraries and include paths
|
|
INCS="`$PKG_CONFIG --cflags fontconfig x11 xft xinerama`"
|
|
LIBS="`$PKG_CONFIG --libs fontconfig x11 xft xinerama`"
|
|
)
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { url = "git://git.suckless.org/dmenu"; };
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"Generic, highly customizable, and efficient menu for the X Window System";
|
|
homepage = "https://tools.suckless.org/dmenu";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pSub globin qusic _0david0mp ];
|
|
platforms = platforms.all;
|
|
mainProgram = "dmenu";
|
|
};
|
|
}
|