diff --git a/doc/packageconfig.xml b/doc/packageconfig.xml index 2b4038bc24d..8426fc050e8 100644 --- a/doc/packageconfig.xml +++ b/doc/packageconfig.xml @@ -43,7 +43,7 @@ Whenever unfree packages are not allowed, packages can still be whitelisted by their license: - nixpkgs.config.whitelistedLicenses = [ licenseA licenseB ]; + nixpkgs.config.whitelistedLicenses = with stdenv.lib.licenses; [ amd wtfpl ]; @@ -54,7 +54,7 @@ allowUnfree setting, you can also explicitely deny installation of packages which have a certain license: - nixpkgs.config.blacklistedLicenses = [ licenseA licenseB ]; + nixpkgs.config.blacklistedLicenses = with stdenv.lib.licenses; [ agpl3 gpl3 ];