1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-30 12:07:46 +00:00

feat: natural apply

This commit is contained in:
Kevin Amado 2022-02-01 19:24:54 -05:00
parent 863976c10f
commit 14ed5b9fc8
No known key found for this signature in database
GPG key ID: FFF341057F503148
4 changed files with 93 additions and 95 deletions

View file

@ -2,12 +2,10 @@ let
lockData = builtins.readFile ./flake.lock;
lock = builtins.fromJSON lockData;
flakeCompat = lock.nodes.flakeCompat.locked;
flakeCompatSrc =
builtins.fetchTarball
{
url = "https://github.com/edolstra/flake-compat/archive/${flakeCompat.rev}.tar.gz";
sha256 = flakeCompat.narHash;
};
flakeCompatSrc = builtins.fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${flakeCompat.rev}.tar.gz";
sha256 = flakeCompat.narHash;
};
flake = import flakeCompatSrc { src = ./.; };
in
flake.defaultNix.defaultPackage