authentik: bump to 2022.5.1
This commit is contained in:
parent
e8ed589cf7
commit
4522f79791
5 changed files with 1258 additions and 1296 deletions
|
@ -1,12 +1,12 @@
|
|||
{ pkgs, ... }@args:
|
||||
|
||||
let
|
||||
version = "2022.4.1-lukegb";
|
||||
version = "2022.5.1-lukegb";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "lukegb";
|
||||
repo = "authentik";
|
||||
rev = "a2781f6d219c7f3184a3fc88db785b33f0f9815e";
|
||||
hash = "sha256:1m0f2y41871zfy7z806633csdmardq691sggfxrj3bvf7mkvb68j";
|
||||
rev = "770b6ce6908ca6300999eeb84d28837a3118ead1";
|
||||
hash = "sha256:1al1ckavl2np0cz7qysmrp2jap3syc5m0fkdjz4289j9s2932czz";
|
||||
};
|
||||
subargs = args // { inherit src version; };
|
||||
in rec {
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -4,6 +4,6 @@ pkgs.buildGoModule {
|
|||
pname = "authentik-server";
|
||||
inherit src version;
|
||||
|
||||
vendorSha256 = "1ycxq6lla96pw3kc7sylycg90hi3kf35bms8g1gwnn6hp9nkvnz0";
|
||||
vendorSha256 = "01pknsy54h5b8naygsllpnfx089p5lpw4s6gahsxg3ckg5lybxpn";
|
||||
subPackages = "cmd/server";
|
||||
}
|
||||
|
|
|
@ -12,6 +12,21 @@ let
|
|||
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ self.pkgconfig pkgs.pkg-config ];
|
||||
buildInputs = (old.buildInputs or []) ++ [ pkgs.xmlsec pkgs.libxslt pkgs.libxml2 pkgs.libtool ];
|
||||
});
|
||||
hatch-vcs = (super.hatch-vcs or (self.buildPythonPackage rec {
|
||||
pname = "hatch-vcs";
|
||||
version = "0.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = with self; [ hatchling ];
|
||||
propagatedBuildInputs = with self; [ hatchling setuptools-scm ];
|
||||
checkInputs = with self; [ pkgs.git pytestCheckHook ];
|
||||
|
||||
src = self.fetchPypi {
|
||||
pname = "hatch_vcs";
|
||||
inherit version;
|
||||
sha256 = "1zxb12lrrl1n7ijcxl8mvv94lnhn6b52c1jx6jq9pv2fncrxf4wr";
|
||||
};
|
||||
}));
|
||||
});
|
||||
|
||||
buildInputs = [ pkgs.bash ];
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue