siduck76-st: init at 0.0.0+unstable=2021-08-20
This commit is contained in:
parent
ba2821244f
commit
53d26fbfba
1 changed files with 51 additions and 0 deletions
51
pkgs/applications/terminal-emulators/st/siduck76-st.nix
Normal file
51
pkgs/applications/terminal-emulators/st/siduck76-st.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fontconfig
|
||||||
|
, harfbuzz
|
||||||
|
, libX11
|
||||||
|
, libXext
|
||||||
|
, libXft
|
||||||
|
, ncurses
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "siduck76-st";
|
||||||
|
version = "0.0.0+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 = "A fork of st with many add-ons";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue