mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kratos";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ory";
|
|
repo = "kratos";
|
|
rev = "v${version}";
|
|
hash = "sha256-KDpc0zc65rvvpPojghFEujoS0aewyjv7B/bmpC2i1dA=";
|
|
};
|
|
|
|
vendorHash = "sha256-Y/Sd2hu1bPUb0TQRD1pANz+rtqKcHBXvjKpYwKgxHMQ=";
|
|
|
|
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";
|
|
};
|
|
}
|