2021-05-04 17:14:04 +02:00
|
|
|
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kratos";
|
2024-02-21 00:14:00 +01:00
|
|
|
version = "1.1.0";
|
2021-05-04 17:14:04 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ory";
|
|
|
|
repo = "kratos";
|
|
|
|
rev = "v${version}";
|
2024-02-21 00:14:00 +01:00
|
|
|
hash = "sha256-zrII2lpffZkwFauPAilh1QaqRKvpj1mlHZA7in1ljYg=";
|
2021-05-04 17:14:04 +02:00
|
|
|
};
|
|
|
|
|
2024-02-21 00:14:00 +01:00
|
|
|
vendorHash = "sha256-TSB7jCPOVwub+ZQaaUSmsz/R4HAfmnWb0wTf2w4aeuk=";
|
2021-05-04 17:14:04 +02:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-08-05 23:52:29 +02:00
|
|
|
tags = [ "sqlite" ];
|
2021-05-04 17:14:04 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
# Patch shebangs
|
|
|
|
files=(
|
|
|
|
test/e2e/run.sh
|
|
|
|
script/testenv.sh
|
|
|
|
script/test-envs.sh
|
2022-03-15 14:17:44 +01:00
|
|
|
script/debug-entrypoint.sh
|
2021-05-04 17:14:04 +02:00
|
|
|
)
|
|
|
|
patchShebangs "''${files[@]}"
|
|
|
|
|
|
|
|
# patchShebangs doesn't work for this Makefile, do it manually
|
|
|
|
substituteInPlace Makefile --replace '/bin/bash' '${stdenv.shell}'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
maintainers = with maintainers; [ mrmebelman ];
|
|
|
|
homepage = "https://www.ory.sh/kratos/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
description = "An API-first Identity and User Management system that is built according to cloud architecture best practices";
|
2024-02-11 03:19:15 +01:00
|
|
|
mainProgram = "kratos";
|
2021-05-04 17:14:04 +02:00
|
|
|
};
|
|
|
|
}
|