hydra-example/flake.nix

22 lines
466 B
Nix
Raw Normal View History

2024-05-14 19:19:28 +02:00
{
description = "A very basic flake";
2024-05-14 19:26:15 +02:00
inputs = {
2024-05-17 21:59:42 +02:00
nh = {
url = "github:viperml/nh";
};
2024-05-17 22:10:00 +02:00
heliox-cli.url = "git+https://git.ghoscht.com/heliox/cli";
2024-05-14 19:26:15 +02:00
};
2024-05-17 21:59:42 +02:00
outputs = {
nh,
2024-05-17 22:10:00 +02:00
heliox-cli,
2024-05-17 21:59:42 +02:00
self,
nixpkgs,
...
} @ inputs: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
hydraJobs.neo-cowsay = pkgs.lib.hydraJob pkgs.neo-cowsay;
2024-05-17 22:10:00 +02:00
hydraJobs.heliox = pkgs.lib.hydraJob heliox-cli.packages.x86_64-linux.default;
2024-05-14 19:19:28 +02:00
};
}