outfly/build/nix/flake.nix

18 lines
410 B
Nix
Raw Permalink Normal View History

2024-04-26 21:16:03 +00:00
{
description = "A breathtaking 3D space game in the rings of Jupiter";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.outfly = let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in pkgs.callPackage ./default.nix {};
packages.x86_64-linux.default = self.packages.x86_64-linux.outfly;
};
}