Merge pull request #49265 from markuskowa/licenses-25

Add licenses
This commit is contained in:
Jörg Thalheim 2018-10-29 00:06:41 +00:00 committed by GitHub
commit 14721b2adc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 62 additions and 37 deletions

View File

@ -13,8 +13,10 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake qt4 ];
meta = {
maintainers = [ ];
meta = with stdenv.lib; {
description = "Lightweight data-interchange format";
homepage = http://qjson.sourceforge.net/;
license = licenses.lgpl21;
inherit (qt4.meta) platforms;
};
}

View File

@ -21,9 +21,9 @@ stdenv.mkDerivation {
NIX_CFLAGS_COMPILE = [ "-I${qca2-qt5}/include/Qca-qt5/QtCrypto" ];
NIX_LDFLAGS = [ "-lqca-qt5" ];
meta = {
meta = with stdenv.lib; {
description = "Qt library for OAuth authentication";
inherit (qt5.qtbase.meta) platforms;
maintainers = [ ];
license = licenses.lgpl21;
};
}

View File

@ -34,7 +34,10 @@ stdenv.mkDerivation {
buildInputs = [ gfortran openblas ];
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "Library for fast updating of qr and cholesky decompositions";
homepage = https://sourceforge.net/projects/qrupdate/;
license = licenses.gpl3;
platforms = platforms.unix;
};
}

View File

@ -84,7 +84,8 @@ stdenv.mkDerivation {
passthru = {inherit mysqlSupport;};
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
license = with licenses; [ gpl2 qpl ];
platforms = platforms.linux;
};
}

View File

@ -42,11 +42,12 @@ stdenv.mkDerivation rec {
buildInputs = [ qt4 libX11 bluez perl ];
meta = {
meta = with stdenv.lib; {
description = "Qt Mobility";
homepage = http://qt.nokia.com/products/qt-addons/mobility;
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = with stdenv.lib.platforms; linux;
maintainers = [ maintainers.qknight ];
platforms = platforms.linux;
license = with licenses; [ bsd3 fdl13 gpl3 lgpl21 ];
};
}

View File

@ -43,6 +43,6 @@ stdenv.mkDerivation {
description = "QtScript bindings generator";
homepage = https://code.qt.io/cgit/qt-labs/qtscriptgenerator.git/;
inherit (qt4.meta) platforms;
maintainers = [ ];
license = stdenv.lib.licenses.lgpl21;
};
}

View File

@ -11,8 +11,10 @@ stdenv.mkDerivation {
propagatedBuildInputs = [ncurses];
patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch;
meta = {
meta = with stdenv.lib; {
branch = "5";
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = licenses.gpl2;
};
}

View File

@ -18,9 +18,10 @@ stdenv.mkDerivation rec {
checkInputs = [ python ];
doCheck = false; # fails, probably missing something
meta = {
meta = with stdenv.lib; {
description = "An advanced font engine";
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = stdenv.lib.platforms.unix;
maintainers = [ maintainers.raskin ];
platforms = platforms.unix;
license = licenses.lgpl21;
};
}

View File

@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
buildInputs = [ glib openssl ];
nativeBuildInputs = [ pkgconfig ];
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
description = "Open-source SIP User-Agent library, compliant with the IETF RFC3261 specification";
homepage = http://sofia-sip.sourceforge.net/;
platforms = platforms.linux;
license = licenses.lgpl2;
};
}

View File

@ -30,7 +30,10 @@ stdenv.mkDerivation {
postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "A type 1 font rasterizer library for UNIX/X11";
homepage = http://www.t1lib.org/;
license = with licenses; [ gpl2 lgpl2 ];
platforms = platforms.unix;
};
}

View File

@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
'';
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "Additional taglib plugins";
platforms = platforms.unix;
license = licenses.lgpl2;
};
}

View File

@ -7,7 +7,6 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "mono";
repo = "taglib-sharp";
rev = "taglib-sharp-${version}";
sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp";
};
@ -21,6 +20,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Library for reading and writing metadata in media files";
homepage = https://github.com/mono/taglib-sharp;
platforms = platforms.linux;
license = licenses.lgpl21;
};
}

View File

@ -15,9 +15,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://developer.kde.org/~wheeler/taglib.html;
repositories.git = git://github.com/taglib/taglib.git;
description = "A library for reading and editing the meta-data of several popular audio formats";
inherit (cmake.meta) platforms;
maintainers = [ ];
license = with stdenv.lib.licenses; [ lgpl21 mpl11 ];
};
}

View File

@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "0dsqvsgzam3mypj2ladn6v1yjq9zd47p3lg21jx6kz5azkkkn0gm";
};
meta = {
meta = with stdenv.lib; {
homepage = http://tclap.sourceforge.net/;
description = "Templatized C++ Command Line Parser Library";
platforms = stdenv.lib.platforms.all;
platforms = platforms.all;
license = licenses.mit;
};
}

View File

@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ];
nativeBuildInputs = [ pkgconfig ];
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
description = "GObject-based C library that uses Telepathy GLib, Farstream and GStreamer to handle the media streaming part of channels of type Call";
homepage = https://telepathy.freedesktop.org/wiki/Components/Telepathy-Farstream/;
platforms = platforms.linux;
license = licenses.lgpl21;
};
}

View File

@ -22,8 +22,9 @@ stdenv.mkDerivation rec {
passthru.python = python2;
meta = {
meta = with stdenv.lib; {
homepage = https://telepathy.freedesktop.org;
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = with licenses; [ bsd2 bsd3 lgpl21Plus ];
};
}

View File

@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
homepage = http://tidyp.com/;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
license = licenses.bsd3;
};
}

View File

@ -25,10 +25,10 @@ stdenv.mkDerivation {
})
];
meta = {
meta = with stdenv.lib; {
homepage = http://linux.techass.com/projects/xdb/;
description = "C++ class library formerly known as XDB";
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
platforms = platforms.linux;
license = licenses.lgpl2;
};
}

View File

@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
homepage = http://www.xine-project.org/;
description = "A high-performance, portable and reusable multimedia playback engine";
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = with licenses; [ gpl2 lgpl2 ];
};
}