From 75b9ec55c2e55b06556b74cdaf90742c8cc2c79a Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 7 Apr 2021 19:54:06 -0400 Subject: [PATCH] Add default.nix --- default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..dfb939d --- /dev/null +++ b/default.nix @@ -0,0 +1,12 @@ +# This file exists for legacy Nix installs (nix-build & nix-env) +# https://nixos.wiki/wiki/Flakes#Using_flakes_project_from_a_legacy_Nix +# You generally do *not* have to modify this ever. +(import ( + let + lock = builtins.fromJSON (builtins.readFile ./flake.lock); + in fetchTarball { + url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; + sha256 = lock.nodes.flake-compat.locked.narHash; } +) { + src = ./.; +}).defaultNix \ No newline at end of file