nur @main -
refs -
log -
-
https://git.jolheiser.com/nur.git
diff --git a/buildable.nix b/buildable.nix
index 35778c207769e11cc758be656b1f8461bd05576c..21af140229fcfb9ea18f35d0be63ca24eb780678 100644
--- a/buildable.nix
+++ b/buildable.nix
@@ -18,9 +18,12 @@ );
isReserved = n: builtins.elem n ["lib" "overlays" "modules"];
isBroken = p: ({ meta.broken = false; } // p).meta.broken;
# It's what gets built by CI, so if you correctly mark broken packages as
+
+# It's what gets built by CI, so if you correctly mark broken packages as
(n: !(isReserved n)) # filter out non-packages
(p: (builtins.isAttrs p)
&& !(isBroken p)
+ && isFree p
)
(import ./default.nix { inherit pkgs; })