commit
3d380b9082
|
@ -597,6 +597,7 @@
|
||||||
volth = "Jaroslavas Pocepko <jaroslavas@volth.com>";
|
volth = "Jaroslavas Pocepko <jaroslavas@volth.com>";
|
||||||
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
||||||
vrthra = "Rahul Gopinath <rahul@gopinath.org>";
|
vrthra = "Rahul Gopinath <rahul@gopinath.org>";
|
||||||
|
vyp = "vyp <elisp.vim@gmail.com>";
|
||||||
wedens = "wedens <kirill.wedens@gmail.com>";
|
wedens = "wedens <kirill.wedens@gmail.com>";
|
||||||
willtim = "Tim Philip Williams <tim.williams.public@gmail.com>";
|
willtim = "Tim Philip Williams <tim.williams.public@gmail.com>";
|
||||||
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
let patches' = if isNull patches then [] else patches;
|
let patches' = if patches == null then [] else patches;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "st-0.7";
|
name = "st-0.7";
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://st.suckless.org/;
|
homepage = http://st.suckless.org/;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [viric andsild];
|
maintainers = with maintainers; [viric andsild];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://st.suckless.org/;
|
homepage = http://st.suckless.org/;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, libX11, ncurses, libXext, libXft, fontconfig }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.7.1";
|
||||||
|
name = "xst-${version}";
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
inherit name;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "neeasade";
|
||||||
|
repo = "xst";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1fh4y2w0icaij99kihl3w8j5d5b38d72afp17c81pi57f43ss6pc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig libX11 ncurses libXext libXft fontconfig ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/neeasade/xst";
|
||||||
|
description = "Simple terminal fork that can load config from Xresources";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = maintainers.vyp;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15967,6 +15967,8 @@ with pkgs;
|
||||||
patches = config.st.patches or null;
|
patches = config.st.patches or null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xst = callPackage ../applications/misc/st/xst.nix { };
|
||||||
|
|
||||||
stag = callPackage ../applications/misc/stag {
|
stag = callPackage ../applications/misc/stag {
|
||||||
curses = ncurses;
|
curses = ncurses;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue