diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-12-10 00:27:37 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:35 +0200 |
commit | 7c9b33a81933c1595189695ee51639a475fb3c3e (patch) | |
tree | 7a4eb715c9fba5809d00223c8bb98efdf4421a5f /overlays/profanity/default.nix | |
parent | 89f7f6027781de3869b99a52be55790aa7283adb (diff) | |
download | NUR-7c9b33a81933c1595189695ee51639a475fb3c3e.tar.gz NUR-7c9b33a81933c1595189695ee51639a475fb3c3e.tar.zst NUR-7c9b33a81933c1595189695ee51639a475fb3c3e.zip |
Upgrade profanity (backport)
Diffstat (limited to 'overlays/profanity/default.nix')
-rw-r--r-- | overlays/profanity/default.nix | 13 |
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 | } |