21 lines
620 B
Nix
21 lines
620 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.
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
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, ... }:
|
|
{
|
|
# Without good or dev outputs, we only use flakes for inputs here.
|
|
# The dev tooling is in ./flake-module.nix
|
|
};
|
|
}
|