]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blobdiff - overlays/profanity/default.nix
Upgrade to nixos-unstable
[perso/Immae/Config/Nix/NUR.git] / overlays / profanity / default.nix
diff --git a/overlays/profanity/default.nix b/overlays/profanity/default.nix
deleted file mode 100644 (file)
index 64fae49..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-self: super: {
-  profanity = (super.profanity.override {
-    notifySupport = true;
-    inherit (self) libnotify gpgme gdk_pixbuf;
-    python = self.python3;
-  }).overrideAttrs (old: rec {
-    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" ];
-  });
-}