summary refs log tree commit diff
diff options
context:
space:
mode:
authorThiago Franco de Moraes <totonixsame@gmail.com>2021-02-04 16:58:16 -0300
committerThiago Franco de Moraes <totonixsame@gmail.com>2021-02-04 16:58:16 -0300
commit4e5e9656ceefdc3e8b9ac95fa5059e878f49619e (patch)
tree9d5f37179a7fa90462960198244e8f6591615f47
parent837b4d86baf835f561f8b6ae29e7436b3e214f08 (diff)
downloadnixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar.gz
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar.bz2
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar.lz
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar.xz
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.tar.zst
nixpkgs-4e5e9656ceefdc3e8b9ac95fa5059e878f49619e.zip
tootle: 0.2.0 -> 1.0
-rw-r--r--pkgs/applications/misc/tootle/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/applications/misc/tootle/default.nix b/pkgs/applications/misc/tootle/default.nix
index 3b9b09aaba9..0f6747d69f8 100644
--- a/pkgs/applications/misc/tootle/default.nix
+++ b/pkgs/applications/misc/tootle/default.nix
@@ -16,17 +16,18 @@
 , json-glib
 , glib
 , glib-networking
+, libhandy
 }:
 
 stdenv.mkDerivation rec {
   pname = "tootle";
-  version = "0.2.0";
+  version = "1.0";
 
   src = fetchFromGitHub {
     owner = "bleakgrey";
     repo = pname;
     rev = version;
-    sha256 = "1z3wyx316nns6gi7vlvcfmalhvxncmvcmmlgclbv6b6hwl5x2ysi";
+    sha256 = "NRM7GiJA8c5z9AvXpGXtMl4ZaYN2GauEIbjBmoY4pdo=";
   };
 
   nativeBuildInputs = [
@@ -47,15 +48,7 @@ stdenv.mkDerivation rec {
     json-glib
     libgee
     pantheon.granite
-  ];
-
-  patches = [
-    # Fix build with Vala 0.46
-    # https://github.com/bleakgrey/tootle/pull/164
-    (fetchpatch {
-      url = "https://github.com/worldofpeace/tootle/commit/0a88bdad6d969ead1e4058b1a19675c9d6857b16.patch";
-      sha256 = "0xyx00pgswnhxxbsxngsm6khvlbfcl6ic5wv5n64x7klk8rzh6cm";
-    })
+    libhandy
   ];
 
   postPatch = ''