Merge pull request #24768 from snyh/deepin-terminal

deepin-terminal: Init at 2.3.3
This commit is contained in:
Michael Raskin 2017-05-01 11:23:56 +02:00 committed by GitHub
commit 4d4af5a13a
3 changed files with 36 additions and 0 deletions

View File

@ -491,6 +491,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>";

View 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;
};
}

View File

@ -15813,6 +15813,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;
};