You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
318 B

  1. (import
  2. (
  3. let
  4. lock = builtins.fromJSON (builtins.readFile ./flake.lock);
  5. in
  6. fetchTarball {
  7. url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
  8. sha256 = lock.nodes.flake-compat.locked.narHash;
  9. }
  10. )
  11. {
  12. src = ./.;
  13. }).shellNix