nixfiles/pkgs/default.nix
Jack O'Sullivan a2b146e8ba
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 22m56s
nixos: Add librespeed
2024-01-03 01:07:12 +00:00

11 lines
298 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 { };
}