rewrite weather in go

This commit is contained in:
2024-09-15 07:36:17 +03:00
parent 65297845e5
commit 605d340aa0
6 changed files with 142 additions and 56 deletions

View File

@@ -94,6 +94,7 @@
deploy-rs-pkg = null;
})
(_: super: {
weather = super.callPackage ./pkgs/weather { };
nicer = super.callPackage ./pkgs/nicer.nix { };
imapsync = super.callPackage ./pkgs/imapsync.nix { };
tmuxbash = super.callPackage ./pkgs/tmuxbash.nix { };
@@ -305,19 +306,20 @@
};
formatter = pkgs.nixfmt-rfc-style;
}
)
// {
packages.x86_64-linux.vanta-agent =
let
pkgs = import nixpkgs {
inherit overlays;
system = "x86_64-linux";
};
in
pkgs.vanta-agent;
};
// (
let
pkgs = import nixpkgs {
inherit overlays;
system = "x86_64-linux";
};
in
{
packages.x86_64-linux.vanta-agent = pkgs.vanta-agent;
packages.x86_64-linux.weather = pkgs.weather;
}
);
}