summary refs log tree commit diff
path: root/pkgs/applications/misc/kratos
diff options
context:
space:
mode:
authorVladyslav Burzakovskyy <vladislav.burzakovskij@satoshilabs.com>2021-05-04 18:14:04 +0300
committerVladyslav Burzakovskyy <vladislav.burzakovskij@satoshilabs.com>2021-05-06 11:19:22 +0300
commit5f42984b67ab487dcae9df3dc5701cdaedb8d334 (patch)
tree51e5d64114ab6fbd03733d070af3118d83fab81e /pkgs/applications/misc/kratos
parent66c384e30cb51174def66cb3df130acb5710f41a (diff)
downloadnixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar.gz
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar.bz2
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar.lz
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar.xz
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.tar.zst
nixpkgs-5f42984b67ab487dcae9df3dc5701cdaedb8d334.zip
kratos: init at v0.6.0-alpha.1
Diffstat (limited to 'pkgs/applications/misc/kratos')
-rw-r--r--pkgs/applications/misc/kratos/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/applications/misc/kratos/default.nix b/pkgs/applications/misc/kratos/default.nix
new file mode 100644
index 00000000000..7f7b89618eb
--- /dev/null
+++ b/pkgs/applications/misc/kratos/default.nix
@@ -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";
+  };
+}