summaryrefslogtreecommitdiff
path: root/overlays/profanity/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/profanity/default.nix')
-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}