Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / cyrus-sasl-xoauth2 / default.nix
blobbc81574a0cdf658996ef150670f53e9e173ffc20
1 { lib, stdenv, fetchFromGitHub, autoconf, libtool, automake, cyrus_sasl }:
3 stdenv.mkDerivation rec {
4   pname = "cyrus-sasl-xoauth2";
5   version = "0.2";
7   src = fetchFromGitHub {
8     owner = "moriyoshi";
9     repo = "cyrus-sasl-xoauth2";
10     rev = "v${version}";
11     sha256 = "sha256-lI8uKtVxrziQ8q/Ss+QTgg1xTObZUTAzjL3MYmtwyd8=";
12   };
14   nativeBuildInputs = [ autoconf libtool automake ];
16   buildInputs = [ cyrus_sasl ];
18   preConfigure = "./autogen.sh";
20   configureFlags = [
21     "--with-cyrus-sasl=${placeholder "out"}"
22   ];
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   };