2021-05-04 16:14:04 +01:00
|
|
|
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kratos";
|
2022-04-19 09:53:00 +01:00
|
|
|
version = "0.9.0-alpha.3";
|
2021-05-04 16:14:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ory";
|
|
|
|
repo = "kratos";
|
|
|
|
rev = "v${version}";
|
2022-04-19 09:53:00 +01:00
|
|
|
sha256 = "1x6g5mbbz1nkqi814dcyvdn8dyizpilzsb9cqijw0kpw4y3px757";
|
2021-05-04 16:14:04 +01:00
|
|
|
};
|
|
|
|
|
2022-04-19 09:53:00 +01:00
|
|
|
vendorSha256 = "1v29g302zqh7sc5s53dyz1mki0iijnr6nfj4fajayz2n7bfw3kh1";
|
2021-05-04 16:14:04 +01:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-08-05 22:52:29 +01:00
|
|
|
tags = [ "sqlite" ];
|
2021-05-04 16:14:04 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
# Patch shebangs
|
|
|
|
files=(
|
|
|
|
test/e2e/run.sh
|
|
|
|
script/testenv.sh
|
|
|
|
script/test-envs.sh
|
2022-03-15 13:17:44 +00:00
|
|
|
script/debug-entrypoint.sh
|
2021-05-04 16:14:04 +01: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";
|
|
|
|
};
|
|
|
|
}
|