depot/pkgs/development/libraries/cyrus-sasl-xoauth2/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
799 B
Nix

{ lib, stdenv, fetchFromGitHub, autoconf, libtool, automake, cyrus_sasl }:
stdenv.mkDerivation rec {
pname = "cyrus-sasl-xoauth2";
version = "0.2";
src = fetchFromGitHub {
owner = "moriyoshi";
repo = "cyrus-sasl-xoauth2";
rev = "v${version}";
sha256 = "sha256-lI8uKtVxrziQ8q/Ss+QTgg1xTObZUTAzjL3MYmtwyd8=";
};
nativeBuildInputs = [ autoconf libtool automake ];
buildInputs = [ cyrus_sasl ];
preConfigure = "./autogen.sh";
configureFlags = [
"--with-cyrus-sasl=${placeholder "out"}"
];
meta = with lib; {
homepage = "https://github.com/moriyoshi/cyrus-sasl-xoauth2";
description = "XOAUTH2 mechanism plugin for cyrus-sasl";
platforms = platforms.unix;
license = licenses.mit;
maintainers = with lib.maintainers; [ wentasah ];
};
}