Go to file
2023-09-18 14:15:22 +03:00
.github/workflows Add FlakeHub publish Action 2023-09-18 14:15:22 +03:00
COPYING Add MIT license 2021-08-01 14:10:57 +02:00
default.nix Merge pull request #50 from hercules-ci/nix-7207-_type-is-flake 2023-01-17 12:47:33 +01:00
README.md Quote url literal 2022-04-19 13:59:50 +02:00

flake-compat

Usage

To use, add the following to your flake.nix:

inputs.flake-compat = {
  url = "github:edolstra/flake-compat";
  flake = false;
};

Afterwards, create a default.nix file containing the following:

(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

If you would like a shell.nix file, create one containing the above, replacing defaultNix with shellNix.