nixpkgs/pkgs/by-name/xp/xprompt/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-05 18:42:16 +00:00
{
lib,
stdenv,
fetchFromGitHub,
writeText,
fontconfig,
libX11,
libXft,
libXinerama,
conf ? null,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "xprompt";
version = "2.5.0";
src = fetchFromGitHub {
owner = "phillbush";
repo = "xprompt";
rev = "v${version}";
sha256 = "sha256-pOayKngUlrMY3bFsP4Fi+VsOLKCUQU3tdkZ+0OY1SCo=";
};
buildInputs = [
fontconfig
libX11
libXft
libXinerama
];
2024-08-16 21:15:34 +00:00
postPatch =
2022-07-05 18:42:16 +00:00
let
configFile =
2024-08-16 21:15:34 +00:00
if lib.isDerivation conf || builtins.isPath conf then conf else writeText "config.h" conf;
2022-07-05 18:42:16 +00:00
in
2024-08-16 21:15:34 +00:00
lib.optionalString (conf != null) "cp ${configFile} config.h";
2022-07-05 18:42:16 +00:00
2022-09-04 17:46:00 +00:00
makeFlags = [
"CC:=$(CC)"
"PREFIX=$(out)"
];
2022-07-05 18:42:16 +00:00
passthru.updateScript = nix-update-script { };
2022-07-05 18:42:16 +00:00
meta = with lib; {
description = "Dmenu rip-off with contextual completion";
longDescription = ''
XPrompt is a prompt for X. XPrompt features a text input field where the
user can type in a text subject to tab-completion.
'';
homepage = "https://github.com/phillbush/xprompt";
license = licenses.mit;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
2023-11-23 21:09:35 +00:00
mainProgram = "xprompt";
2022-07-05 18:42:16 +00:00
};
}