From 7c9b33a81933c1595189695ee51639a475fb3c3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Tue, 10 Dec 2019 00:27:37 +0100 Subject: [PATCH] Upgrade profanity (backport) --- overlays/profanity/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/overlays/profanity/default.nix b/overlays/profanity/default.nix index 33861f1b..64fae490 100644 --- a/overlays/profanity/default.nix +++ b/overlays/profanity/default.nix @@ -4,6 +4,17 @@ self: super: { inherit (self) libnotify gpgme gdk_pixbuf; python = self.python3; }).overrideAttrs (old: rec { - configureFlags = old.configureFlags ++ [ "--enable-plugins" ]; + version = "0.7.1"; + pname = "profanity"; + name = "profanity-0.7.1"; + src = self.fetchFromGitHub { + owner = "profanity-im"; + repo = "profanity"; + rev = version; + sha256 = "1mcgr86wqyzqx7mqxfkk2jwx6cgnvrky3zi4v1ww0lh6j05wj9gf"; + }; + patches = builtins.tail old.patches; + buildInputs = old.buildInputs ++ [ self.libsignal-protocol-c self.libgcrypt ]; + configureFlags = old.configureFlags ++ [ "--enable-plugins" "--enable-omemo" ]; }); } -- 2.41.0