Files
nix-stuff/nur.nix
Shelvacu 282532b751 nix fmt
2025-07-15 11:24:55 -07:00

11 lines
289 B
Nix

# This file exists only for NUR compatibility, the main entry point is flake.nix
{ pkgs }:
let
inherit (pkgs) lib;
packagePaths = import ./packages;
shelPackages = builtins.mapAttrs (
_: path: lib.callPackageWith (pkgs // shelPackages) path { }
) packagePaths;
in
shelPackages