about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-02 00:47:30 +0100
committerGitHub <noreply@github.com>2021-02-02 00:47:30 +0100
commit995e8c122fbe3ea9733036db5febefd070e3c37a (patch)
tree8d9603076dfa440246192c4c19c33b279619659a /pkgs/applications/editors
parent2e7a585be3718fc556d3aa3e2efb6f42b05a7e8a (diff)
parentc90bed57e37713f469289665fdd7107d9a67beb3 (diff)
downloadnixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar.gz
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar.bz2
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar.lz
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar.xz
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.tar.zst
nixlib-995e8c122fbe3ea9733036db5febefd070e3c37a.zip
Merge pull request #111544 from mweinelt/gobby
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/gobby/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/gobby/default.nix b/pkgs/applications/editors/gobby/default.nix
index a78692ebf765..27047f8e95a8 100644
--- a/pkgs/applications/editors/gobby/default.nix
+++ b/pkgs/applications/editors/gobby/default.nix
@@ -4,15 +4,15 @@
 
 let
   libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
-in stdenv.mkDerivation {
+in stdenv.mkDerivation rec {
   pname = "gobby";
-  version = "unstable-2020-12-29";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "gobby";
     repo = "gobby";
-    rev = "49bfd3c3aa82e6fe9b3d59c3455d7eb4b77379fc";
-    sha256 = "1p2f2rid7c0b9gvmywl3r37sxx57wv3r1rxvs1rwihmf9rkqnfxg";
+    rev = "v${version}";
+    sha256 = "06cbc2y4xkw89jaa0ayhgh7fxr5p2nv3jjs8h2xcbbbgwaw08lk0";
   };
 
   nativeBuildInputs = [ autoconf automake pkg-config intltool itstool yelp-tools wrapGAppsHook ];