2022-05-13 10:10:42 +02:00
|
|
|
{
|
|
|
|
description = "Dependencies for development purposes";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
# Flakes don't give us a good way to depend on .., so we don't.
|
2022-11-11 05:53:18 +01:00
|
|
|
# As a consequence, this flake is a little non-standard, and
|
|
|
|
# we can't use the `nix` CLI as expected.
|
2022-05-25 16:19:43 +02:00
|
|
|
|
2023-01-26 20:40:11 +01:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
2022-11-11 05:50:50 +01:00
|
|
|
pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
|
2022-05-17 10:18:59 +02:00
|
|
|
pre-commit-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";
|
2022-05-18 00:41:17 +02:00
|
|
|
hercules-ci-effects.url = "github:hercules-ci/hercules-ci-effects";
|
2022-05-13 10:10:42 +02:00
|
|
|
};
|
|
|
|
|
2023-05-29 13:52:03 -04:00
|
|
|
outputs = { ... }:
|
2022-05-17 10:20:36 +02:00
|
|
|
{
|
|
|
|
# The dev tooling is in ./flake-module.nix
|
2022-11-11 05:53:18 +01:00
|
|
|
# See comment at `inputs` above.
|
2022-05-17 10:20:36 +02:00
|
|
|
};
|
2022-05-13 10:10:42 +02:00
|
|
|
}
|