uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 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.9.0-alpha.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ory";
|
||||
repo = "kratos";
|
||||
rev = "v${version}";
|
||||
sha256 = "1x6g5mbbz1nkqi814dcyvdn8dyizpilzsb9cqijw0kpw4y3px757";
|
||||
};
|
||||
|
||||
vendorSha256 = "1v29g302zqh7sc5s53dyz1mki0iijnr6nfj4fajayz2n7bfw3kh1";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue