hydra-example/flake.nix

20 lines
386 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-14 19:26:15 +02:00
};
2024-05-17 21:59:42 +02:00
outputs = {
nh,
self,
nixpkgs,
...
} @ inputs: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
# hydraJobs.nh = pkgs.lib.customisation.hydraJob nh.packages.x86_64-linux.nh;
hydraJobs.neo-cowsay = pkgs.lib.hydraJob pkgs.neo-cowsay;
2024-05-14 19:19:28 +02:00
};
}