mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-15 17:50:53 +00:00
20 lines
667 B
Nix
20 lines
667 B
Nix
{
|
|
description = "Dependencies for development purposes";
|
|
|
|
inputs = {
|
|
# Flakes don't give us a good way to depend on .., so we don't.
|
|
# As a consequence, this flake is a little non-standard, and
|
|
# we can't use the `nix` CLI as expected.
|
|
|
|
nixpkgs.url = "github:hercules-ci/nixpkgs/options-markdown-and-errors";
|
|
pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
|
|
pre-commit-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
hercules-ci-effects.url = "github:hercules-ci/hercules-ci-effects";
|
|
};
|
|
|
|
outputs = { self, ... }:
|
|
{
|
|
# The dev tooling is in ./flake-module.nix
|
|
# See comment at `inputs` above.
|
|
};
|
|
}
|