blob: 8d3da4eee03c6106ee47ecfde0ec6fd501606401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
description = "a dumb minecraft in c++ and opengl.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-darwin";
pkgs = import nixpkgs { inherit system; };
in {
packages = {
${system}.default = pkgs.callPackage ./. {};
};
};
}
|