Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
930 B
Nix
52 lines
930 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fontconfig,
|
|
libX11,
|
|
libXext,
|
|
libXft,
|
|
ncurses,
|
|
pkg-config,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xst";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnotclub";
|
|
repo = "xst";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-2pXR9U2tTBd0lyeQ3BjnXW+Ne9aUQg/+rnpmYPPG06A=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
fontconfig
|
|
libX11
|
|
libXext
|
|
libXft
|
|
ncurses
|
|
];
|
|
|
|
installFlags = [
|
|
"TERMINFO=$(out)/share/terminfo"
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/gnotclub/xst";
|
|
description = "Simple terminal fork that can load config from Xresources";
|
|
mainProgram = "xst";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vyp ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|