nixfiles/pkgs/default.nix
Jack O'Sullivan 45bda5b588
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 32m58s
pkgs/chocolate-doom2xx: Add -demoloopi flag
2024-06-06 14:39:09 +01:00

16 lines
573 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 { };
glfw-minecraft = callPackage ./glfw-minecraft { };
chocolate-doom2xx = callPackage ./chocolate-doom2xx { };
windowtolayer = callPackage ./windowtolayer.nix { };
swaylock-plugin = callPackage ./swaylock-plugin.nix { };
}