1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/dev/flake.nix

21 lines
627 B
Nix
Raw Normal View History

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