summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-12-10 00:27:37 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:04:35 +0200
commit7c9b33a81933c1595189695ee51639a475fb3c3e (patch)
tree7a4eb715c9fba5809d00223c8bb98efdf4421a5f
parent89f7f6027781de3869b99a52be55790aa7283adb (diff)
downloadNUR-7c9b33a81933c1595189695ee51639a475fb3c3e.tar.gz
NUR-7c9b33a81933c1595189695ee51639a475fb3c3e.tar.zst
NUR-7c9b33a81933c1595189695ee51639a475fb3c3e.zip
Upgrade profanity (backport)
-rw-r--r--overlays/profanity/default.nix13
1 files changed, 12 insertions, 1 deletions
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: {
4 inherit (self) libnotify gpgme gdk_pixbuf; 4 inherit (self) libnotify gpgme gdk_pixbuf;
5 python = self.python3; 5 python = self.python3;
6 }).overrideAttrs (old: rec { 6 }).overrideAttrs (old: rec {
7 configureFlags = old.configureFlags ++ [ "--enable-plugins" ]; 7 version = "0.7.1";
8 pname = "profanity";
9 name = "profanity-0.7.1";
10 src = self.fetchFromGitHub {
11 owner = "profanity-im";
12 repo = "profanity";
13 rev = version;
14 sha256 = "1mcgr86wqyzqx7mqxfkk2jwx6cgnvrky3zi4v1ww0lh6j05wj9gf";
15 };
16 patches = builtins.tail old.patches;
17 buildInputs = old.buildInputs ++ [ self.libsignal-protocol-c self.libgcrypt ];
18 configureFlags = old.configureFlags ++ [ "--enable-plugins" "--enable-omemo" ];
8 }); 19 });
9} 20}