feat: use latest bottle version

This commit is contained in:
oddlama 2023-09-14 20:16:03 +02:00
parent be9211f4f0
commit d9a2aeaa5d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -2,8 +2,9 @@
(import ./caddy.nix) (import ./caddy.nix)
(import ./oauth2-proxy) (import ./oauth2-proxy)
(_self: super: { (_self: super: {
kanidm-secret-manipulator = super.callPackage ./kanidm-secret-manipulator.nix {};
segoe-ui-ttf = super.callPackage ./segoe-ui-ttf.nix {}; segoe-ui-ttf = super.callPackage ./segoe-ui-ttf.nix {};
kanidm-secret-manipulator = super.callPackage ./kanidm-secret-manipulator.nix {};
kanidm = super.kanidm.overrideAttrs (_finalAttrs: _previousAttrs: { kanidm = super.kanidm.overrideAttrs (_finalAttrs: _previousAttrs: {
patches = [ patches = [
(super.fetchpatch { (super.fetchpatch {
@ -20,5 +21,15 @@
doCheck = false; doCheck = false;
}); });
bottles-unwrapped = super.bottles-unwrapped.overrideAttrs (_finalAttrs: _previousAttrs: {
version = "51.9";
src = super.fetchFromGitHub {
owner = "bottlesdevs";
repo = "bottles";
rev = "51.9";
hash = "sha256-iZUszwVcbVn6Xsqou6crSp9gJBRmm5vEqxS87h/s3PQ=";
};
});
}) })
] ]