summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-08-31 15:54:39 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-08-31 15:54:39 -0300
commit8b97f374cb81d92a9ebe96993879d5d76fd08f70 (patch)
tree61dc367a2d053f878ea2752537c586204141ae66 /pkgs
parentfc39e5c6452db50dc4c9ac89792b866383db1b04 (diff)
downloadnixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar.gz
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar.bz2
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar.lz
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar.xz
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.tar.zst
nixpkgs-8b97f374cb81d92a9ebe96993879d5d76fd08f70.zip
deepin-terminal: 3.0.0 -> 3.0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/deepin/deepin-terminal/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/desktops/deepin/deepin-terminal/default.nix b/pkgs/desktops/deepin/deepin-terminal/default.nix
index a72bae4384a..7ace219dbf5 100644
--- a/pkgs/desktops/deepin/deepin-terminal/default.nix
+++ b/pkgs/desktops/deepin/deepin-terminal/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "deepin-terminal-${version}";
-  version = "3.0.0";
+  version = "3.0.3";
 
   src = fetchFromGitHub {
     owner = "linuxdeepin";
     repo = "deepin-terminal";
     rev = version;
-    sha256 = "11f2yc0fj05lwhgvdrbrs8xsdm7qgp6wb5wd1f9iyc5nxn7ccl1r";
+    sha256 = "04yvim97a4j8fq5lq2g6svs8qs79np9m4nl6x83iv02wkb9b7gqa";
   };
 
   patches = [
@@ -29,15 +29,17 @@ stdenv.mkDerivation rec {
     # For setup hook
     gobjectIntrospection
   ];
+
   buildInputs = [ gtk3 vte libgee wnck librsvg libsecret json-glib ];
 
   meta = with stdenv.lib; {
     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.
+      It is an advanced terminal emulator with workspace, multiple
+      windows, remote management, quake mode and other features.
      '';
-    homepage = https://github.com/linuxdeepin/deepin-terminal/;
+    homepage = https://github.com/linuxdeepin/deepin-terminal;
     license = licenses.gpl3;
     maintainers = with maintainers; [ ];
     platforms = platforms.linux;