Skip to content

Instantly share code, notes, and snippets.

@aaronjanse
Created July 30, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronjanse/e4c1ab3b99e588656d59cca2d3f74e2f to your computer and use it in GitHub Desktop.
Save aaronjanse/e4c1ab3b99e588656d59cca2d3f74e2f to your computer and use it in GitHub Desktop.
{ stdenv, fetchurl, pkgconfig, writeText, libX11, ncurses
, libXft, conf ? null, patches ? [], extraLibs ? []}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "st";
version = "0.8.4";
src = ./.;
nativeBuildInputs = [ pkgconfig ncurses ];
buildInputs = [ libX11 libXft ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment