summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/licenses.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/licenses.nix b/lib/licenses.nix
index 55c6b81041c..5f5cf3490cf 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -1,8 +1,10 @@
 { lib }:
 
 lib.mapAttrs (lname: lset: let
-  defaultLicense = {
+  defaultLicense = rec {
     shortName = lname;
+    free = true; # Most of our licenses are Free, explicitly declare unfree additions as such!
+    deprecated = false;
   };
 
   mkLicense = licenseDeclaration: let