nixpkgs/pkgs/applications/misc/kratos/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-04 18:14:04 +03:00
{ fetchFromGitHub, buildGoModule, lib, stdenv }:
buildGoModule rec {
pname = "kratos";
2024-02-21 02:14:00 +03:00
version = "1.1.0";
2021-05-04 18:14:04 +03:00
src = fetchFromGitHub {
owner = "ory";
repo = "kratos";
rev = "v${version}";
2024-02-21 02:14:00 +03:00
hash = "sha256-zrII2lpffZkwFauPAilh1QaqRKvpj1mlHZA7in1ljYg=";
2021-05-04 18:14:04 +03:00
};
2024-02-21 02:14:00 +03:00
vendorHash = "sha256-TSB7jCPOVwub+ZQaaUSmsz/R4HAfmnWb0wTf2w4aeuk=";
2021-05-04 18:14:04 +03:00
subPackages = [ "." ];
2021-08-06 00:52:29 +03:00
tags = [ "sqlite" ];
2021-05-04 18:14:04 +03:00
# Pass versioning information via ldflags
ldflags = [
"-X github.com/ory/kratos/driver/config.Version=${version}"
"-X github.com/ory/kratos/driver/config.Commit=f47675b82012e0ff74b05b9b7e713b3aa2fdda54"
];
2021-05-04 18:14:04 +03:00
doCheck = false;
preBuild = ''
# Patch shebangs
files=(
test/e2e/run.sh
script/testenv.sh
script/test-envs.sh
script/debug-entrypoint.sh
2021-05-04 18:14:04 +03: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";
2024-02-11 05:19:15 +03:00
mainProgram = "kratos";
2021-05-04 18:14:04 +03:00
};
}