summaryrefslogtreecommitdiff
path: root/guix/licenses.scm
AgeCommit message (Collapse)Author
2015-03-17licenses: Add the Ms-PL.Ludovic Courtès
* guix/licenses.scm (ms-pl): New variable.
2015-03-14licenses: Rename 'bsd-style' to 'non-copyleft'.Ludovic Courtès
* guix/licenses.scm (bsd-style): Rename to... (non-copyleft): ... this. Clarify docstring. (bsd-style): Introduce as an alias for 'non-copyleft'.
2015-02-24licenses: Add IPA Font License.Andreas Enge
* guix/licenses.scm (ipa): New variable.
2015-02-18guix: licenses: Add Artistic 2.0 license.Eric Bavier
* guix/licenses.scm (artistic2.0): New variable.
2014-12-09gnu: licenses: Add NCSA license.Eric Bavier
* guix/licenses.scm (ncsa): New variable.
2014-11-25licenses: Add MPL 1.1.Ludovic Courtès
* guix/licenses.scm (mpl1.1): New variable.
2014-11-19licenses: Add the Clarified Artistic License.Ludovic Courtès
* guix/licenses.scm (clarified-artistic): New variable.
2014-11-10licenses: Add 'silofl1.1'.Alex Kost
* guix/licenses.scm (silofl1.1): New variable.
2014-10-26licenses: Add 'imlib2'.Alex Kost
* guix/licenses.scm (imlib2): New variable. * gnu/packages/image.scm (imlib2): Use it.
2014-09-28gnu: Add ruby.Pjotr Prins
Co-authored-by: David Thompson <davet@gnu.org> * gnu/packages/ruby.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. * guix/licenses.scm (ruby): New variable.
2014-06-30guix: Add CC0 license.Eric Bavier
* guix/licenses.scm (cc0): New variable.
2014-05-19guix: licenses: Add CeCILL-C license.Eric Bavier
* guix/licenses.scm (cecill-c): New variable.
2014-03-22licenses: Fix Nixpkgs license URL.Yakkala Yagnesh Raghava
* guix/licenses.scm: Fix Nixpkgs URL in comment. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2014-01-22licenses: Add GNU FDL 1.3+.Ludovic Courtès
* guix/licenses.scm (fdl1.3+): New variable.
2013-06-03licenses: Add 'agpl3' and 'agpl3+'.Nikita Karetnikov
* guix/licenses.scm (agpl3, agpl3+): New variables.
2013-03-06licenses: Add 'x11-style'.Nikita Karetnikov
* guix/licenses.scm (x11-style): New variable.
2013-02-11gnu: Add tmux. licenses: add ISC.Cyril Roelandt
* gnu/packages/tmux.scm: New file. * Makefile.am (MODULES): Use it. * guix/licenses.scm: add ISC.
2013-02-05licenses: Add new meta-license fsf-free.Andreas Enge
* guix/licenses.scm (fsf-free): New record with constructor.
2013-01-24gnu: Add OCaml. licenses: Add QPL.Cyril Roelandt
* gnu/packages/ocaml.scm: New file. * Makefile.am (MODULES): Add it. * guix/licenses.scm: New variable.
2013-01-19gnu: Add Freetype.Andreas Enge
licenses: Add freetype license. * gnu/packages/freetype.scm: New file. * guix/licenses.scm (freetype): New variable. * Makefile.am (MODULES): Add freetype.scm.
2013-01-18licenses: Add 'vim'.Andreas Enge
* guix/licenses.scm (vim): New variable.
2013-01-15licenses: Add 'psfl'.Nikita Karetnikov
* guix/licenses.scm (psfl): New variable.
2013-01-13licenses: Add 'openldap2.8'.Andreas Enge
* guix/licenses.scm (openldap2.8): New variable.
2013-01-06Update license headers.Ludovic Courtès
Change all license headers, except guix/build/* and ld-wrapper.scm, with this code: (use-modules (guix build utils) (srfi srfi-1)) (fluid-set! %default-port-encoding "UTF-8") (substitute* (remove (lambda (f) (or (string-contains f ".tar.") (string-contains f ".git/") (string-contains f ".so") (string-suffix? ".o" f) (string-suffix? ".a" f) (string-suffix? ".go" f) (string-suffix? ".pdf" f) (string-suffix? ".png" f) (string-suffix? ".info" f) (equal? (basename f) "guix-daemon") (equal? (basename f) "nix-setuid-helper") (string-contains f "nix-upstream/") (string-contains f "distro/packages/bootstrap/"))) (find-files "." "\\.[a-z]+$")) (("^([[:graph:]]+) This file is part of Guix." _ comment-start) (string-append comment-start " This file is part of GNU Guix.")) (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start) (string-append comment-start " GNU Guix --- Functional package management for GNU\n")) (("^([[:graph:]]+) Guix is " _ comment-start) (string-append comment-start " GNU Guix is ")) (("^([[:graph:]]+) along with Guix." _ comment-start) (string-append comment-start " along with GNU Guix.")) (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start) (string-append comment-start " Copyright ©"))) Change headers using C-style comments manually.
2012-12-12licenses: Add 'bsd-style', 'expat', 'gpl1', 'gpl1+', 'lgpl2.0', and 'lgpl2.0+'.Nikita Karetnikov
* guix/licenses.scm (bsd-style, expat, gpl1, gpl1+) (lgpl2.0, lgpl2.0+): New variables.
2012-12-08Add (guix licenses).Nikita Karetnikov
* guix/licenses.scm: New file. * Makefile.am (MODULES): Add it.