aboutsummaryrefslogtreecommitdiff
path: root/pkgs/cyrus-sasl-xoauth2/default.nix
blob: 2bd8713cd90fd802d03aed716a83e6a9b628cf70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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
  '';
}