Merge pull request #24768 from snyh/deepin-terminal
deepin-terminal: Init at 2.3.3
This commit is contained in:
commit
4d4af5a13a
@ -491,6 +491,7 @@
|
|||||||
skrzyp = "Jakub Skrzypnik <jot.skrzyp@gmail.com>";
|
skrzyp = "Jakub Skrzypnik <jot.skrzyp@gmail.com>";
|
||||||
sleexyz = "Sean Lee <freshdried@gmail.com>";
|
sleexyz = "Sean Lee <freshdried@gmail.com>";
|
||||||
smironov = "Sergey Mironov <grrwlf@gmail.com>";
|
smironov = "Sergey Mironov <grrwlf@gmail.com>";
|
||||||
|
snyh = "Xia Bin <snyh@snyh.org>";
|
||||||
solson = "Scott Olson <scott@solson.me>";
|
solson = "Scott Olson <scott@solson.me>";
|
||||||
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
||||||
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -15813,6 +15813,12 @@ with pkgs;
|
|||||||
vte = gnome2.vte.override { pythonSupport = true; };
|
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 {
|
termite = callPackage ../applications/misc/termite {
|
||||||
vte = gnome3.vte-ng;
|
vte = gnome3.vte-ng;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user