commit aca2226f753d2f8e79dc6c51ca901d88efabe8b2 parent ca83a66a3eca2177a4169e07fd755537569f689d Author: William Casarin <jb55@jb55.com> Date: Sun, 14 Jun 2020 15:34:13 -0700 add nix stuff because why not Signed-off-by: William Casarin <jb55@jb55.com> Diffstat:
A | .envrc | | | 1 | + |
A | default.nix | | | 6 | ++++++ |
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/.envrc b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/default.nix b/default.nix @@ -0,0 +1,6 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; +stdenv.mkDerivation { + name = "project"; + nativeBuildInputs = [ ]; +}