Files
nixpkgs/pkgs/by-name/oa/oauth2ms/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
910 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
python3,
}:
stdenv.mkDerivation {
pname = "oauth2ms";
version = "2021-07-09";
src = fetchFromGitHub {
owner = "harishkrupo";
repo = "oauth2ms";
rev = "a1ef0cabfdea57e9309095954b90134604e21c08"; # No tags or releases in the repo
sha256 = "sha256-xPSWlHJAXhhj5I6UMjUtH1EZqCZWHJMFWTu3a4k1ETc";
};
buildInputs = [
(python3.withPackages (
ps: with ps; [
pyxdg
msal
python-gnupg
]
))
];
installPhase = ''
runHook preInstall
install -m755 -D oauth2ms $out/bin/oauth2ms
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/harishkrupo/oauth2ms";
description = "XOAUTH2 compatible Office365 token fetcher";
mainProgram = "oauth2ms";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ wentasah ];
};
}