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

feat: add a readme

This commit is contained in:
Kevin Amado 2022-01-26 18:24:38 -05:00
parent 1211194ba0
commit bbfb513aa9
No known key found for this signature in database
GPG key ID: FFF341057F503148
4 changed files with 136 additions and 12 deletions

15
default.nix Normal file
View file

@ -0,0 +1,15 @@
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;
};
flake = import flakeCompatSrc { src = ./.; };
in
flake
.defaultNix
.defaultPackage