{ fetchFromGitHub, buildGoModule, lib, stdenv }: buildGoModule rec { pname = "kratos"; version = "0.8.3-alpha.1.pre.0"; src = fetchFromGitHub { owner = "ory"; repo = "kratos"; rev = "v${version}"; sha256 = "1225paf0x6lb6cb3q5f4lyz0r426ifx4x8145q7nsc6v64srck2y"; }; vendorSha256 = "10zhxbccjsp6hbmk2lnvbag6c92hz703mcaigaj4wvlf7glpldm6"; subPackages = [ "." ]; tags = [ "sqlite" ]; doCheck = false; preBuild = '' # Patch shebangs files=( test/e2e/run.sh script/testenv.sh script/test-envs.sh script/debug-entrypoint.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"; }; }