mirror of
https://github.com/callumio/scenics.git
synced 2025-12-17 11:39:20 +00:00
9 lines
225 B
Nix
9 lines
225 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
}:
|
|
# ./default.nix gets included as default, so remove it from the final package set
|
|
builtins.removeAttrs (lib.packagesFromDirectoryRecursive {
|
|
inherit (pkgs) callPackage;
|
|
directory = ./.;
|
|
}) ["default"]
|