initial setup
Buildscripts, nix shell, skeleton project
This commit is contained in:
commit
f5c43c4fb4
11 changed files with 284 additions and 0 deletions
13
shell.nix
Normal file
13
shell.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs ? import <nixpkgs> {} }: let
|
||||
tidyfox = import ./default.nix { inherit pkgs; };
|
||||
in pkgs.mkShell.override {
|
||||
stdenv = tidyfox.stdenv;
|
||||
} {
|
||||
name = "tidyfox";
|
||||
|
||||
nativeBuildInputs = with pkgs; [
|
||||
just
|
||||
];
|
||||
|
||||
inputsFrom = [ tidyfox ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue