comparison src/LICENSE @ 517:136d4b84eb96

Build an open-source release of library modules
author Adam Chlipala <adam@chlipala.net>
date Thu, 05 Dec 2013 15:51:33 -0500
parents
children
comparison
equal deleted inserted replaced
516:a8377999fcf9 517:136d4b84eb96
1 "Certified Programming with Dependent Types" code license information
2 <http://adam.chlipala.net/cpdt/>
3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5 CAUTION: Most of the source files in this distribution are NOT
6 open-source in the usual sense. See the comment at the beginning of
7 each source file for its license, which is Creative Commons, oriented
8 more toward free distribution of books than the usual collaborative
9 model of open-source software. The author really is trying to keep
10 you from remixing your own versions of the book, which MIT Press might
11 not be too happy about.
12
13 However, a few of the library modules used here are sufficiently
14 useful that they are released separately under a BSD license, included
15 below. The author wants to repeat some advice from the book text,
16 though: please don't use these library modules in real projects. They
17 are not designed for any use beside getting the reader up and running
18 quickly in reading the book. All of their content, including the
19 "crush" functionality, is rather trivial to implement from scratch for
20 your own projects, using the techniques that the book presents.
21
22
23 The following license applies ONLY to the source files:
24 CpdtTactics.v
25 MoreSpecif.v
26 DepList.v
27
28 ~~~~~~~~~~~
29 BSD LICENSE
30 ~~~~~~~~~~~
31
32 Copyright (c) 2006-2013, Adam Chlipala
33 All rights reserved.
34
35 Redistribution and use in source and binary forms, with or without
36 modification, are permitted provided that the following conditions are met:
37
38 - Redistributions of source code must retain the above copyright notice,
39 this list of conditions and the following disclaimer.
40 - Redistributions in binary form must reproduce the above copyright notice,
41 this list of conditions and the following disclaimer in the documentation
42 and/or other materials provided with the distribution.
43 - The names of contributors may not be used to endorse or promote products
44 derived from this software without specific prior written permission.
45
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
47 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
48 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
49 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
50 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
51 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
52 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
53 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
54 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
55 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
56 POSSIBILITY OF SUCH DAMAGE.