Andreas Enge
|
b387a1c5b2
|
gnu: Add Freetype.
licenses: Add freetype license.
* gnu/packages/freetype.scm: New file.
* guix/licenses.scm (freetype): New variable.
* Makefile.am (MODULES): Add freetype.scm.
|
2013-01-19 12:28:55 +01:00 |
Andreas Enge
|
99e6c1b18e
|
licenses: Add 'vim'.
* guix/licenses.scm (vim): New variable.
|
2013-01-18 22:48:28 +01:00 |
Nikita Karetnikov
|
e2034de5d0
|
licenses: Add 'psfl'.
* guix/licenses.scm (psfl): New variable.
|
2013-01-15 09:54:38 +01:00 |
Andreas Enge
|
1ca982808a
|
licenses: Add 'openldap2.8'.
* guix/licenses.scm (openldap2.8): New variable.
|
2013-01-13 23:18:58 +01:00 |
Ludovic Courtès
|
233e76769a
|
Update license headers.
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.
|
2013-01-06 00:47:50 +01:00 |
Nikita Karetnikov
|
f15b31c562
|
licenses: Add 'bsd-style', 'expat', 'gpl1', 'gpl1+', 'lgpl2.0', and 'lgpl2.0+'.
* guix/licenses.scm (bsd-style, expat, gpl1, gpl1+)
(lgpl2.0, lgpl2.0+): New variables.
|
2012-12-12 14:40:11 +01:00 |
Nikita Karetnikov
|
838d78e3e0
|
Add (guix licenses).
* guix/licenses.scm: New file.
* Makefile.am (MODULES): Add it.
|
2012-12-08 19:17:02 +01:00 |