wfvm/flake.nix

22 lines
423 B
Nix

{
description = "WFVM: Windows Functional Virtual Machine";
inputs = {
# nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:astro/nixpkgs/guestfs-tools";
};
outputs = { self, nixpkgs }:
let
# only x64 is supported
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
lib = import ./wfvm {
inherit pkgs;
};
};
}