Files
nixpkgs/pkgs/by-name/st/st-snazzy/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
896 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
fontconfig,
harfbuzz,
libX11,
libXft,
ncurses,
gd,
glib,
pkg-config,
}:
stdenv.mkDerivation {
pname = "st-snazzy";
version = "0.8.5-unstable-2024-09-06";
src = fetchFromGitHub {
owner = "siduck";
repo = "st";
rev = "a7582f96afdee6bf0793cd0d8f84b755fd6aabf6";
hash = "sha256-wohkmDsm26kqFGQKuY6NuBQsifT7nZNgrLqLFsU+Vog=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
fontconfig
harfbuzz
libX11
libXft
ncurses
gd
glib
];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
env.TERMINFO = "${placeholder "out"}/share/terminfo";
meta = {
homepage = "https://github.com/siduck/st";
description = "Snazzy terminal (suckless + beautiful)";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pouya ];
platforms = lib.platforms.linux;
};
}