snapshot pre-cleanup-2026-05-23T19-39-41Z

This commit is contained in:
2026-05-23 23:32:28 +02:00
parent c8ee6d85fe
commit 30e8029a6b
35 changed files with 353 additions and 229 deletions
+9 -15
View File
@@ -1,16 +1,10 @@
{ ... }: {
flake.packages.dejaManuallyDerived = {
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
versionCheckHook,
}:
buildGoModule (finalAttrs: {
perSystem = { pkgs, pkgs-unstable, ...}: {
packages.dejaManuallyDerived = pkgs-unstable.buildGoModule (finalAttrs: {
pname = "deja";
version = "0.2.6";
__structuredAttrs = true;
src = fetchFromGitHub {
src = pkgs.fetchFromGitHub {
owner = "Giammarco-Ferranti";
repo = "deja";
tag = "v${finalAttrs.version}";
@@ -27,17 +21,17 @@
doCheck = true;
nativeCheckInputs = [versionCheckHook];
nativeCheckInputs = [pkgs.versionCheckHook];
passthru.updateScript = nix-update-script {};
passthru.updateScript = pkgs.nix-update-script {};
meta = {
description = "Predictive inline shell autosuggestions for zsh";
homepage = "https://github.com/Giammarco-Ferranti/deja";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [tomasrivera];
license = pkgs.lib.licenses.mit;
platforms = pkgs.lib.platforms.unix;
maintainers = with pkgs.lib.maintainers; [tomasrivera];
mainProgram = "deja";
};
});
}
};}