Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump and rename siduck76-st > st-snazzy #360236

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18078,6 +18078,13 @@
github = "potb";
githubId = 10779093;
};
pouya = {
email = "[email protected]";
github = "pouya-abbassi";
githubId = 8519318;
name = "Pouya Abbasi";
keys = [ { fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797"; } ];
};
poweredbypie = {
name = "poweredbypie";
github = "poweredbypie";
Expand Down
3 changes: 3 additions & 0 deletions nixos/doc/manual/release-notes/rl-2505.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@

- `programs.clash-verge.tunMode` was deprecated and removed because now service mode is neccessary to start program. Without `programs.clash-verge.enable`, clash-verge-rev will refuse to start.

- `siduck76-st` has been renamed to `st-snazzy`, like the project's [flake](https://github.com/siduck/st/blob/main/flake.nix).


<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->

## Other Notable Changes {#sec-release-25.05-notable-changes}
Expand Down
52 changes: 0 additions & 52 deletions pkgs/applications/terminal-emulators/st/siduck76-st.nix

This file was deleted.

47 changes: 47 additions & 0 deletions pkgs/by-name/st/st-snazzy/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
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;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,7 @@ mapAliases {
sexp = sexpp; # Added 2023-07-03
inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17
shipyard = jumppad; # Added 2023-06-06
siduck76-st = st-snazzy; # Added 2024-12-24
signal-desktop-beta = throw "signal-desktop-beta has been removed to make the signal-desktop package easier to maintain";
shout = nodePackages.shout; # Added unknown; moved 2024-10-19
sky = throw "'sky' has been removed because its upstream website disappeared"; # Added 2024-07-21
Expand Down
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,6 @@ with pkgs;
};
xst = callPackage ../applications/terminal-emulators/st/xst.nix { };
mcaimi-st = callPackage ../applications/terminal-emulators/st/mcaimi-st.nix { };
siduck76-st = callPackage ../applications/terminal-emulators/st/siduck76-st.nix { };

stupidterm = callPackage ../applications/terminal-emulators/stupidterm {
gtk = gtk3;
Expand Down
Loading