2021-05-04 16:14:04 +01:00
|
|
|
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kratos";
|
2021-11-23 14:59:35 +00:00
|
|
|
version = "0.8.0-alpha.3";
|
2021-05-04 16:14:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ory";
|
|
|
|
repo = "kratos";
|
|
|
|
rev = "v${version}";
|
2021-11-23 14:59:35 +00:00
|
|
|
sha256 = "0ihq2kxjackicxg0hrpmx6bsgz056xbaq3j8py37z2w6mwszarcg";
|
2021-05-04 16:14:04 +01:00
|
|
|
};
|
|
|
|
|
2021-11-23 14:59:35 +00:00
|
|
|
vendorSha256 = "175pckj30cm5xkbvsdvwzarvwapsylyjgj4ss8v5r1sa0fjpj008";
|
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
|
|
|
|
persistence/sql/migratest/update_fixtures.sh
|
|
|
|
)
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|