mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-05 08:27:02 +00:00
23 lines
749 B
Nix
23 lines
749 B
Nix
{
|
|
description = "Dependencies for development purposes";
|
|
|
|
inputs = {
|
|
# Flakes don't give us a good way to depend on .., so we don't.
|
|
# This has drastic consequences of course.
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/174460
|
|
# https://github.com/NixOS/nixpkgs/pull/174470
|
|
nixpkgs.url = "github:hercules-ci/nixpkgs/module-docs-update";
|
|
|
|
pre-commit-hooks-nix.url = "github:hercules-ci/pre-commit-hooks.nix/flakeModule";
|
|
pre-commit-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
hercules-ci-effects.url = "github:hercules-ci/hercules-ci-effects";
|
|
};
|
|
|
|
outputs = { self, ... }:
|
|
{
|
|
# Without good or dev outputs, we only use flakes for inputs here.
|
|
# The dev tooling is in ./flake-module.nix
|
|
};
|
|
}
|