diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-05 15:57:20 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:54 +0200 |
commit | 2bcc666fd591dbf7543fc550ff1772508695a746 (patch) | |
tree | 65bb255cbeba40f4c385211bcc32df4c25e6ea6b /overlays/profanity/default.nix | |
parent | 27794e1507ab5bd4b0f31278cf8049854790e4a7 (diff) | |
download | NUR-2bcc666fd591dbf7543fc550ff1772508695a746.tar.gz NUR-2bcc666fd591dbf7543fc550ff1772508695a746.tar.zst NUR-2bcc666fd591dbf7543fc550ff1772508695a746.zip |
Upgrade to nixos-unstable
Diffstat (limited to 'overlays/profanity/default.nix')
-rw-r--r-- | overlays/profanity/default.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/overlays/profanity/default.nix b/overlays/profanity/default.nix deleted file mode 100644 index 64fae490..00000000 --- a/overlays/profanity/default.nix +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | self: super: { | ||
2 | profanity = (super.profanity.override { | ||
3 | notifySupport = true; | ||
4 | inherit (self) libnotify gpgme gdk_pixbuf; | ||
5 | python = self.python3; | ||
6 | }).overrideAttrs (old: rec { | ||
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" ]; | ||
19 | }); | ||
20 | } | ||