nixfiles/pkgs/default.nix
Jack O'Sullivan 51d44e472a
Some checks failed
CI / Check, build and cache Nix flake (push) Failing after 12m18s
pkgs: Add working Minecraft on Wayland GLFW
2024-01-12 14:00:50 +00:00

14 lines
441 B
Nix

{ lib, pkgs }:
let
inherit (pkgs) callPackage;
in
{
# yeah turns out this is in nixpkgs now... we'll leave it as a sample i guess lol
monocraft' = callPackage ./monocraft.nix { };
vfio-pci-bind = callPackage ./vfio-pci-bind.nix { };
librespeed-go = callPackage ./librespeed-go.nix { };
modrinth-app = callPackage ./modrinth-app { };
wastebin = callPackage ./wastebin { };
glfw-minecraft = callPackage ./glfw-minecraft { };
}