Initial Commit

This commit is contained in:
Nathan McCarty 2021-12-16 21:37:35 -05:00
commit 64b5f60eae
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
**/result/**

1
README.md Normal file
View File

@ -0,0 +1 @@
WIP Adoptium flake

11
flake.nix Normal file
View File

@ -0,0 +1,11 @@
{
description = "A very basic flake";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
defaultPackage.x86_64-linux = self.packages.x86_64-linux.hello;
};
}