Rebuild cyrus-sasl with XOAUTH2 support
This commit is contained in:
parent
ca0e576484
commit
dea7abd19a
|
@ -113,6 +113,7 @@
|
||||||
./modules/cachix.nix
|
./modules/cachix.nix
|
||||||
./overlays/emacs.nix
|
./overlays/emacs.nix
|
||||||
./overlays/nix-direnv.nix
|
./overlays/nix-direnv.nix
|
||||||
|
./overlays/cyrus-sasl.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
17
flake.lock
17
flake.lock
|
@ -20,6 +20,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"cyrus-sasl-xoauth2": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1611713742,
|
||||||
|
"narHash": "sha256-IaH8tNUhM0lUOmFiG4G9cGzsuM9mTWfQrzoQ78MIgZ0=",
|
||||||
|
"owner": "robn",
|
||||||
|
"repo": "sasl2-oauth",
|
||||||
|
"rev": "4236b6fb904d836b85b55ba32128b843fd8c2362",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "robn",
|
||||||
|
"repo": "sasl2-oauth",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"emacs-overlay": {
|
"emacs-overlay": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1635758635,
|
"lastModified": 1635758635,
|
||||||
|
@ -53,6 +69,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"agenix": "agenix",
|
"agenix": "agenix",
|
||||||
|
"cyrus-sasl-xoauth2": "cyrus-sasl-xoauth2",
|
||||||
"emacs-overlay": "emacs-overlay",
|
"emacs-overlay": "emacs-overlay",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
agenix.url = "github:ryantm/agenix";
|
agenix.url = "github:ryantm/agenix";
|
||||||
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
||||||
|
cyrus-sasl-xoauth2 = {
|
||||||
|
url = "github:robn/sasl2-oauth";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, agenix, ... }@inputs:
|
outputs = { self, nixpkgs, agenix, ... }@inputs:
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cyrus-sasl-xoauth2 = with pkgs;
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "cyrus-sasl-xoauth2";
|
||||||
|
src = inputs.cyrus-sasl-xoauth2;
|
||||||
|
nativeBuildInputs =
|
||||||
|
[ autoreconfHook inputs.nixpkgs.legacyPackages."${system}".cyrus_sasl ];
|
||||||
|
};
|
||||||
|
|
||||||
|
in {
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
cyrus_sasl = prev.cyrus_sasl.overrideAttrs (div: rec {
|
||||||
|
postInstall = ''
|
||||||
|
for lib in ${cyrus-sasl-xoauth2}/lib/sasl2/*; do
|
||||||
|
ln -sf $lib $out/lib/sasl2/
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue