Add local tooling and CI wiring without bloating flake.nix

This commit is contained in:
Robert Hensing 2022-05-13 10:10:42 +02:00
parent 1c0f8f3036
commit 140da4067f
8 changed files with 112 additions and 0 deletions

13
dev/flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
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";
};
outputs = { self, ... }:
{
};
}