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.
|
|
|
|
# This has drastic consequences of course.
|
|
|
|
nixpkgs.url = "github:hercules-ci/nixpkgs/functionTo-properly";
|
2022-05-17 10:18:59 +02:00
|
|
|
|
|
|
|
pre-commit-hooks-nix.url = "github:hercules-ci/pre-commit-hooks.nix/flakeModule";
|
|
|
|
pre-commit-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";
|
2022-05-13 10:10:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, ... }:
|
2022-05-17 10:20:36 +02:00
|
|
|
{
|
|
|
|
# Without good or dev outputs, we only use flakes for inputs here.
|
|
|
|
# The dev tooling is in ./flake-module.nix
|
|
|
|
};
|
2022-05-13 10:10:42 +02:00
|
|
|
}
|