Merge pull request #47561 from markuskowa/licenses-18

Add licenses
This commit is contained in:
xeji 2018-09-30 21:18:19 +02:00 committed by GitHub
commit 78e244e419
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 27 additions and 17 deletions

View file

@ -61,10 +61,11 @@ stdenv.mkDerivation rec {
inherit sslSupport bdbSupport ldapSupport;
};
meta = {
meta = with stdenv.lib; {
homepage = http://apr.apache.org/;
description = "A companion library to APR, the Apache Portable Runtime";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.unix;
maintainers = [ maintainers.eelco ];
platforms = platforms.unix;
license = licenses.asl20;
};
}

View file

@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
homepage = http://apr.apache.org/;
description = "The Apache Portable Runtime library";
platforms = platforms.all;
license = licenses.asl20;
maintainers = [ maintainers.eelco ];
};
}

View file

@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
mv ../include/openssl $out/include
'';
meta = {
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "https://boringssl.googlesource.com";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
platforms = platforms.all;
maintainers = [ maintainers.thoughtpolice ];
license = with licenses; [ openssl isc mit bsd3 ];
};
}

View file

@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
buildInputs = [ gmp ];
meta = {
meta = with stdenv.lib; {
description = "C/C++ library for numbers, a part of GiNaC";
homepage = http://www.ginac.de/CLN/;
maintainers = [ ];
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
license = licenses.gpl2;
platforms = platforms.unix; # Once had cygwin problems
};
}

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails with "Unable to find executable: /build/clucene-core-2.3.3.4/build/bin/cl_test"
meta = {
meta = with stdenv.lib; {
description = "Core library for full-featured text search engine";
longDescription = ''
CLucene is a high-performance, scalable, cross platform, full-featured,
@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
CLucene is a port of the very popular Java Lucene text search engine API.
'';
homepage = http://clucene.sourceforge.net;
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = with licenses; [ asl20 lgpl2 ];
};
}

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
patches = [ ./gcc6.patch ];
meta = {
meta = with stdenv.lib; {
description = "Core library for full-featured text search engine";
longDescription = ''
CLucene is a high-performance, scalable, cross platform, full-featured,
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
CLucene is a port of the very popular Java Lucene text search engine API.
'';
homepage = http://clucene.sourceforge.net;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = with licenses; [ asl20 lgpl2 ];
};
}

View file

@ -23,5 +23,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/jgm/cmark;
maintainers = [ maintainers.michelk ];
platforms = platforms.unix;
license = licenses.bsd2;
};
}

View file

@ -73,6 +73,7 @@ in stdenv.mkDerivation rec {
render without stepping on each other's toes.
'';
platforms = stdenv.lib.platforms.mesaPlatforms;
platforms = platforms.mesaPlatforms;
license = with licenses; [ mit bsd3 publicDomain sgi-b-20 ];
};
}

View file

@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
description = "Template engine library written in C";
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
license = licenses.gpl3Plus;
};
}

View file

@ -18,10 +18,11 @@ stdenv.mkDerivation rec {
doCheck = false; # fails
meta = {
meta = with stdenv.lib; {
description = "A high performance templating engine";
homepage = http://ctpp.havoc.ru;
maintainers = with stdenv.lib.maintainers; [ robbinch ];
platforms = with stdenv.lib.platforms; linux;
maintainers = [ maintainers.robbinch ];
platforms = platforms.linux;
license = licenses.bsd2;
};
}

View file

@ -58,5 +58,6 @@ stdenv.mkDerivation rec {
homepage = http://cyrusimap.web.cmu.edu/;
description = "Library for adding authentication support to connection-based protocols";
platforms = platforms.unix;
license = licenses.bsdOriginal;
};
}