commit
78e244e419
@ -61,10 +61,11 @@ stdenv.mkDerivation rec {
|
|||||||
inherit sslSupport bdbSupport ldapSupport;
|
inherit sslSupport bdbSupport ldapSupport;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://apr.apache.org/;
|
homepage = http://apr.apache.org/;
|
||||||
description = "A companion library to APR, the Apache Portable Runtime";
|
description = "A companion library to APR, the Apache Portable Runtime";
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ maintainers.eelco ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://apr.apache.org/;
|
homepage = http://apr.apache.org/;
|
||||||
description = "The Apache Portable Runtime library";
|
description = "The Apache Portable Runtime library";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.eelco ];
|
maintainers = [ maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -27,10 +27,11 @@ stdenv.mkDerivation rec {
|
|||||||
mv ../include/openssl $out/include
|
mv ../include/openssl $out/include
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Free TLS/SSL implementation";
|
description = "Free TLS/SSL implementation";
|
||||||
homepage = "https://boringssl.googlesource.com";
|
homepage = "https://boringssl.googlesource.com";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
maintainers = [ maintainers.thoughtpolice ];
|
||||||
|
license = with licenses; [ openssl isc mit bsd3 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ gmp ];
|
buildInputs = [ gmp ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "C/C++ library for numbers, a part of GiNaC";
|
description = "C/C++ library for numbers, a part of GiNaC";
|
||||||
homepage = http://www.ginac.de/CLN/;
|
homepage = http://www.ginac.de/CLN/;
|
||||||
maintainers = [ ];
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
|
platforms = platforms.unix; # Once had cygwin problems
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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"
|
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";
|
description = "Core library for full-featured text search engine";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CLucene is a high-performance, scalable, cross platform, full-featured,
|
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.
|
CLucene is a port of the very popular Java Lucene text search engine API.
|
||||||
'';
|
'';
|
||||||
homepage = http://clucene.sourceforge.net;
|
homepage = http://clucene.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ asl20 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [ ./gcc6.patch ];
|
patches = [ ./gcc6.patch ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Core library for full-featured text search engine";
|
description = "Core library for full-featured text search engine";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CLucene is a high-performance, scalable, cross platform, full-featured,
|
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.
|
CLucene is a port of the very popular Java Lucene text search engine API.
|
||||||
'';
|
'';
|
||||||
homepage = http://clucene.sourceforge.net;
|
homepage = http://clucene.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ asl20 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -23,5 +23,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://github.com/jgm/cmark;
|
homepage = https://github.com/jgm/cmark;
|
||||||
maintainers = [ maintainers.michelk ];
|
maintainers = [ maintainers.michelk ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsd2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,7 @@ in stdenv.mkDerivation rec {
|
|||||||
render without stepping on each other's toes.
|
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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Template engine library written in C";
|
description = "Template engine library written in C";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.lethalman ];
|
maintainers = [ maintainers.lethalman ];
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,10 +18,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
doCheck = false; # fails
|
doCheck = false; # fails
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A high performance templating engine";
|
description = "A high performance templating engine";
|
||||||
homepage = http://ctpp.havoc.ru;
|
homepage = http://ctpp.havoc.ru;
|
||||||
maintainers = with stdenv.lib.maintainers; [ robbinch ];
|
maintainers = [ maintainers.robbinch ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = platforms.linux;
|
||||||
|
license = licenses.bsd2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -58,5 +58,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://cyrusimap.web.cmu.edu/;
|
homepage = http://cyrusimap.web.cmu.edu/;
|
||||||
description = "Library for adding authentication support to connection-based protocols";
|
description = "Library for adding authentication support to connection-based protocols";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user