feat: add git-fuzzy package with patch to load config from git

This commit is contained in:
oddlama 2023-09-18 14:01:49 +02:00
parent 89fd5abd88
commit 736287e536
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 83 additions and 14 deletions

View file

@ -2,9 +2,11 @@
(import ./caddy.nix)
(import ./oauth2-proxy)
(_self: super: {
segoe-ui-ttf = super.callPackage ./segoe-ui-ttf.nix {};
git-fuzzy = super.callPackage ./git-fuzzy {};
kanidm-secret-manipulator = super.callPackage ./kanidm-secret-manipulator.nix {};
segoe-ui-ttf = super.callPackage ./segoe-ui-ttf.nix {};
zsh-histdb-skim = super.callPackage ./zsh-skim-histdb.nix {};
kanidm = super.kanidm.overrideAttrs (_finalAttrs: _previousAttrs: {
patches = [
(super.fetchpatch {
@ -21,17 +23,5 @@
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=";
};
});
zsh-histdb-skim = super.callPackage ./zsh-skim-histdb.nix {};
})
]