Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.61 KB

reuse.org

File metadata and controls

53 lines (37 loc) · 1.61 KB

REUSE

NixNG utilizes ~reuse-tool~ to specify the licenses for all files in the project. We utilize several licenses, described below each in it’s own section. When creating new files please utilize the commands below to add a proper license header to all files.
\ To check for REUSE compliance run:

reuse link

CC-BY-SA

This license is used for all documentation and related documents.

Command

reuse addheader --copyright "Richard Brežák and NixNG contributors" --license CC-BY-SA-4.0 <filename>

MPL-2.0

This license is used for all files containing primarly code.

Command

reuse addheader --copyright "Richard Brežák and NixNG contributors" --license MPL-2.0 --template mpl-2-0 <filename>

CC0

This license is used for minor files and machine generated files such as: flake.lock, .gitignore.

Command

reuse addheader --copyright "Richard Brežák and NixNG contributors" --license CC0 <filename>