stupidterm: init at 2017-03-15
Stupidterm is a simple and fast VTE-Based terminal emulator which is configured by a simple ini-file. fixes #29779
This commit is contained in:
parent
430869ba3b
commit
95f3e6ca32
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, vte, gtk }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stupidterm-2017-03-15";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ vte gtk ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "esmil";
|
||||
repo = "stupidterm";
|
||||
rev = "752316a783f52317ffd9f05d32e208dbcafc5ba6";
|
||||
sha256 = "1d8fyhr9sgpxgkwzkyiws0kvhmqfwwyycvcr1qf2wjldiax222lv";
|
||||
};
|
||||
|
||||
makeFlags = "PKGCONFIG=${pkgconfig}/bin/pkg-config binary=stupidterm";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/applications $out/share/stupidterm
|
||||
cp stupidterm $out/bin
|
||||
substituteAll ${./stupidterm.desktop} $out/share/applications/stupidterm.desktop
|
||||
substituteAll stupidterm.ini $out/share/stupidterm/stupidterm.ini
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple wrapper around the VTE terminal emulator widget for GTK+";
|
||||
longDescription = ''
|
||||
Simple wrapper around the VTE terminal emulator widget for GTK+
|
||||
'';
|
||||
homepage = https://github.com/esmil/stupidterm;
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = [ maintainers.etu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Version=20170315
|
||||
Name=stupidterm
|
||||
Comment=VTE based terminal emulator
|
||||
Exec=stupidterm
|
||||
Icon=utilities-terminal
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=System;TerminalEmulator;
|
|
@ -16238,6 +16238,11 @@ with pkgs;
|
|||
|
||||
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
|
||||
|
||||
stupidterm = callPackage ../applications/misc/stupidterm {
|
||||
vte = gnome3.vte;
|
||||
gtk = gtk3;
|
||||
};
|
||||
|
||||
styx = callPackage ../applications/misc/styx { };
|
||||
|
||||
tecoc = callPackage ../applications/editors/tecoc { };
|
||||
|
|
Loading…
Reference in New Issue