This commit is contained in:
2022-10-11 00:10:32 +02:00
parent 3b87f787a8
commit c124cfc5dc
2 changed files with 46 additions and 0 deletions

19
flake.nix Normal file
View File

@@ -0,0 +1,19 @@
{
description = "WFVM: Windows Functional Virtual Machine";
inputs = {
};
outputs = { self, nixpkgs }:
let
# only x64 is supported
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
lib = import ./wfvm {
inherit pkgs;
};
};
}