cyrus-sasl-xoauth2: init at 0.2

+33
+31
pkgs/development/libraries/cyrus-sasl-xoauth2/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, autoconf, libtool, automake, cyrus_sasl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "cyrus-sasl-xoauth2"; 5 + version = "0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "moriyoshi"; 9 + repo = "cyrus-sasl-xoauth2"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-lI8uKtVxrziQ8q/Ss+QTgg1xTObZUTAzjL3MYmtwyd8="; 12 + }; 13 + 14 + nativeBuildInputs = [ autoconf libtool automake ]; 15 + 16 + buildInputs = [ cyrus_sasl ]; 17 + 18 + preConfigure = "./autogen.sh"; 19 + 20 + configureFlags = [ 21 + "--with-cyrus-sasl=${placeholder "out"}" 22 + ]; 23 + 24 + meta = with lib; { 25 + homepage = "https://github.com/moriyoshi/cyrus-sasl-xoauth2"; 26 + description = "XOAUTH2 mechanism plugin for cyrus-sasl"; 27 + platforms = platforms.unix; 28 + license = licenses.mit; 29 + maintainers = with lib.maintainers; [ wentasah ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 18439 18439 openssl = openssl_1_1; 18440 18440 }; 18441 18441 18442 + cyrus-sasl-xoauth2 = callPackage ../development/libraries/cyrus-sasl-xoauth2 { }; 18443 + 18442 18444 # Make bdb5 the default as it is the last release under the custom 18443 18445 # bsd-like license 18444 18446 db = db5;