2022-11-25 15:31:07 +00:00
|
|
|
{ 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 { };
|
2023-12-09 21:14:31 +00:00
|
|
|
vfio-pci-bind = callPackage ./vfio-pci-bind.nix { };
|
2024-01-03 01:07:12 +00:00
|
|
|
librespeed-go = callPackage ./librespeed-go.nix { };
|
2024-01-09 17:19:13 +00:00
|
|
|
modrinth-app = callPackage ./modrinth-app { };
|
2024-01-12 14:00:50 +00:00
|
|
|
glfw-minecraft = callPackage ./glfw-minecraft { };
|
2024-06-06 14:39:09 +01:00
|
|
|
chocolate-doom2xx = callPackage ./chocolate-doom2xx { };
|
2024-06-06 02:08:35 +01:00
|
|
|
windowtolayer = callPackage ./windowtolayer.nix { };
|
|
|
|
swaylock-plugin = callPackage ./swaylock-plugin.nix { };
|
2023-12-09 21:14:31 +00:00
|
|
|
}
|