deepin-terminal: init at 2.3.3
This commit is contained in:
parent
ec674a6372
commit
273f1e56af
@ -485,6 +485,7 @@
|
||||
skrzyp = "Jakub Skrzypnik <jot.skrzyp@gmail.com>";
|
||||
sleexyz = "Sean Lee <freshdried@gmail.com>";
|
||||
smironov = "Sergey Mironov <grrwlf@gmail.com>";
|
||||
snyh = "Xia Bin <snyh@snyh.org>";
|
||||
solson = "Scott Olson <scott@solson.me>";
|
||||
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
||||
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
|
||||
|
29
pkgs/applications/misc/deepin-terminal/default.nix
Normal file
29
pkgs/applications/misc/deepin-terminal/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, unzip, fetchFromGitHub, pkgconfig, gtk3, vala, cmake, vte, gee, wnck, gettext, libsecret, json_glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "deepin-terminal-${version}";
|
||||
version = "2.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxdeepin";
|
||||
repo = "deepin-terminal";
|
||||
rev = version;
|
||||
sha256 = "0qam34g1rannv8kvw1zbps763a9ii9vbrkxyxxdk737hlpxdzg8h";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace project_path.c --replace __FILE__ \"$out/share/deepin-terminal/\"
|
||||
'';
|
||||
buildInputs = [ unzip gtk3 pkgconfig vala cmake vte gee wnck gettext libsecret json_glib ];
|
||||
|
||||
meta = {
|
||||
description = "The default terminal emulation for Deepin";
|
||||
longDescription = ''
|
||||
Deepin terminal, it sharpens your focus in the world of command line!
|
||||
It is an advanced terminal emulator with workspace, multiple windows, remote management, quake mode and other features.
|
||||
'';
|
||||
homepage = "https://github.com/linuxdeepin/deepin-terminal/";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -15670,6 +15670,12 @@ with pkgs;
|
||||
vte = gnome2.vte.override { pythonSupport = true; };
|
||||
};
|
||||
|
||||
deepin-terminal = callPackage ../applications/misc/deepin-terminal {
|
||||
vte = gnome3.vte;
|
||||
wnck = libwnck3;
|
||||
gee = libgee_0_8;
|
||||
};
|
||||
|
||||
termite = callPackage ../applications/misc/termite {
|
||||
vte = gnome3.vte-ng;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user