kratos: init at v0.6.0-alpha.1
This commit is contained in:
parent
66c384e30c
commit
5f42984b67
2 changed files with 44 additions and 0 deletions
42
pkgs/applications/misc/kratos/default.nix
Normal file
42
pkgs/applications/misc/kratos/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "kratos";
|
||||||
|
version = "0.6.0-alpha.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ory";
|
||||||
|
repo = "kratos";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0lnrm7ma203b5a0vxgm9zqsbs3nigx0kng5zymrjvrzll1gd79wm";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "16qg44k97l6719hib8vbv0j15x6gvs9d6738d2y990a2qiqbsqpw";
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
buildFlags = [ "-tags sqlite" ];
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -5955,6 +5955,8 @@ in
|
||||||
|
|
||||||
kpcli = callPackage ../tools/security/kpcli { };
|
kpcli = callPackage ../tools/security/kpcli { };
|
||||||
|
|
||||||
|
kratos = callPackage ../applications/misc/kratos { };
|
||||||
|
|
||||||
krename = libsForQt5.callPackage ../applications/misc/krename { };
|
krename = libsForQt5.callPackage ../applications/misc/krename { };
|
||||||
|
|
||||||
krunner-pass = libsForQt5.callPackage ../tools/security/krunner-pass { };
|
krunner-pass = libsForQt5.callPackage ../tools/security/krunner-pass { };
|
||||||
|
|
Loading…
Reference in a new issue