20 lines
717 B
Nix
20 lines
717 B
Nix
[
|
|
(import ./scripts)
|
|
(_self: super: {
|
|
zsh-histdb-skim = super.callPackage ./zsh-histdb-skim.nix {};
|
|
zsh-histdb = super.callPackage ./zsh-histdb.nix {};
|
|
your_spotify = super.callPackage ./your_spotify.nix {};
|
|
deploy = super.callPackage ./deploy.nix {};
|
|
minify = super.callPackage ./minify {};
|
|
awakened-poe-trade = super.callPackage ./awakened-poe-trade.nix {};
|
|
neovim-clean = super.neovim-unwrapped.overrideAttrs (_neovimFinal: neovimPrev: {
|
|
nativeBuildInputs = (neovimPrev.nativeBuildInputs or []) ++ [super.makeWrapper];
|
|
postInstall =
|
|
(neovimPrev.postInstall or "")
|
|
+ ''
|
|
wrapProgram $out/bin/nvim --add-flags "--clean"
|
|
'';
|
|
});
|
|
})
|
|
]
|