diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-28 09:57:50 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-28 09:57:50 +0200 |
commit | bd45b922601eeb7b5d15f9e51ed7e855a690a281 (patch) | |
tree | d45397d2bb8d536d2529c852b7d1bb6b0da36774 /pkgs/cyrus-sasl-xoauth2 | |
parent | 8ffb2fa1a27fdce06aa0b108c212bf31ae104685 (diff) | |
download | nixos-personal-bd45b922601eeb7b5d15f9e51ed7e855a690a281.tar.gz nixos-personal-bd45b922601eeb7b5d15f9e51ed7e855a690a281.tar.bz2 nixos-personal-bd45b922601eeb7b5d15f9e51ed7e855a690a281.zip |
Revert "pkgs: add cyrus-sasl-xoauth2"
This reverts commit a5b7a8482adb4d8bd829a9a6e50819c2784185b0.
Just use it in Ferdium. OAuth2 on MS is stupid.
Diffstat (limited to 'pkgs/cyrus-sasl-xoauth2')
-rw-r--r-- | pkgs/cyrus-sasl-xoauth2/default.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/cyrus-sasl-xoauth2/default.nix b/pkgs/cyrus-sasl-xoauth2/default.nix deleted file mode 100644 index 2bd8713..0000000 --- a/pkgs/cyrus-sasl-xoauth2/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, stdenv, fetchFromGitHub -, autoconf, automake, libtool, pkg-config -, cyrus_sasl -}: - -with lib; - -stdenv.mkDerivation rec { - pname = "cyrus-sasl-xoauth2"; - version = "0.2"; - src = fetchFromGitHub { - owner = "moriyoshi"; - repo = "cyrus-sasl-xoauth2"; - rev = "v${version}"; - sha256 = "lI8uKtVxrziQ8q/Ss+QTgg1xTObZUTAzjL3MYmtwyd8="; - }; - - nativeBuildInputs = [ - autoconf automake libtool pkg-config - ]; - buildInputs = [ - cyrus_sasl - ]; - - preConfigure = '' - ./autogen.sh - ''; - installPhase = '' - make DESTDIR=$out install - ''; -} |