mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
49aace166a
kratos: 1.1.0 -> 1.2.0
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
lib,
|
|
stdenv
|
|
}:
|
|
let
|
|
pname = "kratos";
|
|
version = "1.2.0";
|
|
in
|
|
buildGoModule {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ory";
|
|
repo = "kratos";
|
|
rev = "v${version}";
|
|
hash = "sha256-KqF6DYrEsmPj2PtI2+5ztE0m9uBO1gpNlvdo+Aw6REA=";
|
|
};
|
|
|
|
vendorHash = "sha256-6gJf+8AKjV83MTF0rC8OxDwkwGx4CJg7SdfNgcja8QY=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
tags = [ "sqlite" ];
|
|
|
|
# Pass versioning information via ldflags
|
|
ldflags = [
|
|
"-X github.com/ory/kratos/driver/config.Version=${version}"
|
|
];
|
|
|
|
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-fail '/usr/bin/env bash' '${stdenv.shell}'
|
|
'';
|
|
|
|
meta = {
|
|
mainProgram = "kratos";
|
|
description = "API-first Identity and User Management system that is built according to cloud architecture best practices";
|
|
homepage = "https://www.ory.sh/kratos/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ mrmebelman ];
|
|
};
|
|
}
|