vintagestory/flake.nix

23 lines
449 B
Nix
Raw Permalink Normal View History

2025-03-31 19:36:58 +03:00
{
description = "Vintagestory";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs, ... } @ inputs:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
config.permittedInsecurePackages = [ "dotnet-runtime-7.0.20" ];
};
in
{
packages.x86_64-linux.default = pkgs.callPackage ./vintagestory.nix {};
};
}