Bump and rename siduck76-st > st-snazzy (#360236)
This commit is contained in:
@@ -18106,6 +18106,13 @@
|
||||
github = "potb";
|
||||
githubId = 10779093;
|
||||
};
|
||||
pouya = {
|
||||
email = "me@pouyacode.net";
|
||||
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";
|
||||
|
||||
@@ -256,6 +256,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}
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
fontconfig,
|
||||
harfbuzz,
|
||||
libX11,
|
||||
libXext,
|
||||
libXft,
|
||||
ncurses,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "siduck76-st";
|
||||
version = "0.pre+unstable=2021-08-20";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "siduck76";
|
||||
repo = "st";
|
||||
rev = "c9bda1de1f3f94ba507fa0eacc96d6a4f338637f";
|
||||
hash = "sha256-5n+QkSlVhhku7adtl7TuWhDl3zdwFaXc7Ot1RaIN54A=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
fontconfig
|
||||
harfbuzz
|
||||
libX11
|
||||
libXext
|
||||
libXft
|
||||
ncurses
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/siduck76/st";
|
||||
description = "Fork of st with many add-ons";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -1199,6 +1199,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
|
||||
|
||||
@@ -1568,7 +1568,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;
|
||||
|
||||
Reference in New Issue
Block a user