summary refs log blame commit diff
path: root/pkgs/applications/terminal-emulators/st/siduck76-st.nix
blob: a6753a105c6d1d68da775210fb8904aa727d069d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                         
                                        



































                                                                 
{ 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 = "A fork of st with many add-ons";
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.linux;
  };
}