lukesmithxyz-st: init at 0.0.0+unstable=2021-08-10

This commit is contained in:
AndersonTorres
2021-09-06 00:18:26 -03:00
parent 72dfd9f635
commit 2312cef179
3 changed files with 73 additions and 0 deletions
@@ -0,0 +1,14 @@
diff -Naur old/Makefile new/Makefile
--- old/Makefile 1969-12-31 21:00:01.000000000 -0300
+++ new/Makefile 2021-09-06 00:10:26.972466947 -0300
@@ -40,8 +40,8 @@
rm -rf st-$(VERSION)
install: st
- git submodule init
- git submodule update
+# git submodule init
+# git submodule update
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f st $(DESTDIR)$(PREFIX)/bin
cp -f st-copyout $(DESTDIR)$(PREFIX)/bin
@@ -0,0 +1,56 @@
{ lib
, stdenv
, fetchFromGitHub
, fontconfig
, harfbuzz
, libX11
, libXext
, libXft
, ncurses
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "lukesmithxyz-st";
version = "0.0.0+unstable=2021-08-10";
src = fetchFromGitHub {
owner = "LukeSmithxyz";
repo = "st";
rev = "e053bd6036331cc7d14f155614aebc20f5371d3a";
hash = "sha256-WwjuNxWoeR/ppJxJgqD20kzrn1kIfgDarkTOedX/W4k=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
fontconfig
harfbuzz
libX11
libXext
libXft
ncurses
];
patches = [
# eliminate useless calls to git inside Makefile
./0000-makefile-fix-install.diff
];
installPhase = ''
runHook preInstall
TERMINFO=$out/share/terminfo make install PREFIX=$out
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/LukeSmithxyz/st";
description = "Luke Smith's fork of st";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
};
}
+3
View File
@@ -1015,6 +1015,9 @@ with pkgs;
extraLibs = config.st.extraLibs or [];
};
xst = callPackage ../applications/terminal-emulators/st/xst.nix { };
lukesmithxyz-st = callPackage ../applications/terminal-emulators/st/lukesmithxyz-st { };
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;