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:
parent
1211194ba0
commit
bbfb513aa9
4 changed files with 136 additions and 12 deletions
15
default.nix
Normal file
15
default.nix
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue