1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-05 00:16:52 +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 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
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";
};
2023-05-29 13:52:03 -04:00
outputs = { ... }:
{
# The dev tooling is in ./flake-module.nix
2022-11-11 05:53:18 +01:00
# See comment at `inputs` above.
};
}