python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / oa / oama / package.nix
blob1f87b3bffe434a477f5ab89a5082dd97ed3e0c73
2   haskell,
3   haskellPackages,
4   lib,
5   stdenv,
6 }:
7 let
8   inherit (haskell.lib.compose) overrideCabal justStaticExecutables;
10   overrides = {
11     description = "OAuth credential MAnager";
12     homepage = "https://github.com/pdobsan/oama";
13     maintainers = with lib.maintainers; [ aidalgol ];
15     passthru.updateScript = ./update.sh;
16   };
18   raw-pkg = haskellPackages.callPackage ./generated-package.nix { };
20 lib.pipe raw-pkg [
21   (overrideCabal overrides)
22   # FIXME: eliminate all erroneous references on aarch64-darwin manually,
23   # see https://github.com/NixOS/nixpkgs/issues/318013
24   (if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then lib.id else justStaticExecutables)