Merge pull request #45282 from markuskowa/lics-2

Add licenses
This commit is contained in:
Jörg Thalheim 2018-08-19 09:03:31 +01:00 committed by GitHub
commit 96b9d77dd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 59 additions and 33 deletions

View File

@ -41,7 +41,10 @@ stdenv.mkDerivation {
meta = { meta = {
description = "An interactive drawing tool for X11"; description = "An interactive drawing tool for X11";
homepage = http://xfig.org; homepage = http://mcj.sourceforge.net/;
license = {
url = "http://mcj.sourceforge.net/authors.html#xfig";
};
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
}; };
} }

View File

@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
description = "Linux development manual pages"; description = "Linux development manual pages";
homepage = https://www.kernel.org/doc/man-pages/; homepage = https://www.kernel.org/doc/man-pages/;
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages; repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
license = licenses.gpl2Plus;
platforms = with platforms; unix; platforms = with platforms; unix;
priority = 30; # if a package comes with its own man page, prefer it priority = 30; # if a package comes with its own man page, prefer it
}; };

View File

@ -152,6 +152,7 @@ let
meta = { meta = {
homepage = https://www.perl.org/; homepage = https://www.perl.org/;
description = "The standard implementation of the Perl 5 programmming language"; description = "The standard implementation of the Perl 5 programmming language";
license = licenses.artistic1;
maintainers = [ maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = platforms.all; platforms = platforms.all;
}; };

View File

@ -27,6 +27,7 @@ let
meta = with lib; { meta = with lib; {
description = "Free TLS/SSL implementation"; description = "Free TLS/SSL implementation";
homepage = "https://www.libressl.org"; homepage = "https://www.libressl.org";
license = with licenses; [ publicDomain bsdOriginal bsd0 bsd3 gpl3 isc ];
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
}; };

View File

@ -108,9 +108,10 @@ in stdenv.mkDerivation rec {
rm -f "$out"/lib/*.a rm -f "$out"/lib/*.a
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://developer.mozilla.org/en-US/docs/NSS; homepage = https://developer.mozilla.org/en-US/docs/NSS;
description = "A set of libraries for development of security-enabled client and server applications"; description = "A set of libraries for development of security-enabled client and server applications";
platforms = stdenv.lib.platforms.all; license = licenses.mpl20;
platforms = platforms.all;
}; };
} }

View File

@ -51,6 +51,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.openldap.org/; homepage = http://www.openldap.org/;
description = "An open source implementation of the Lightweight Directory Access Protocol"; description = "An open source implementation of the Lightweight Directory Access Protocol";
license = licenses.openldap;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix; platforms = platforms.unix;
}; };

View File

@ -107,11 +107,12 @@ let
fi fi
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://www.openssl.org/; homepage = https://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols"; description = "A cryptographic library that implements the SSL and TLS protocols";
platforms = stdenv.lib.platforms.all; license = licenses.openssl;
maintainers = [ stdenv.lib.maintainers.peti ]; platforms = platforms.all;
maintainers = [ maintainers.peti ];
priority = 10; # resolves collision with man-pages priority = 10; # resolves collision with man-pages
}; };
}; };

View File

@ -83,6 +83,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/polkit; homepage = http://www.freedesktop.org/wiki/Software/polkit;
description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes"; description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes";
license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ ]; maintainers = [ ];
}; };

View File

@ -12,7 +12,8 @@ stdenv.mkDerivation {
substituteInPlace Makefile.in --replace /usr "$out" substituteInPlace Makefile.in --replace /usr "$out"
''; '';
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
platforms = platforms.linux;
}; };
} }

View File

@ -78,11 +78,12 @@ stdenv.mkDerivation {
cp scripts/lvm2_activation_generator_systemd_red_hat $out/lib/systemd/system-generators cp scripts/lvm2_activation_generator_systemd_red_hat $out/lib/systemd/system-generators
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://sourceware.org/lvm2/; homepage = http://sourceware.org/lvm2/;
description = "Tools to support Logical Volume Management (LVM) on Linux"; description = "Tools to support Logical Volume Management (LVM) on Linux";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [raskin]; license = with licenses; [ gpl2 bsd2 lgpl21 ];
maintainers = with maintainers; [raskin];
inherit version; inherit version;
downloadPage = "ftp://sources.redhat.com/pub/lvm2/"; downloadPage = "ftp://sources.redhat.com/pub/lvm2/";
}; };

View File

@ -44,9 +44,10 @@ stdenv.mkDerivation rec {
-e 's@/usr/sbin/sendmail@${sendmail-script}@' -i Makefile -e 's@/usr/sbin/sendmail@${sendmail-script}@' -i Makefile
''; '';
meta = { meta = with stdenv.lib; {
description = "Programs for managing RAID arrays under Linux"; description = "Programs for managing RAID arrays under Linux";
homepage = http://neil.brown.name/blog/mdadm; homepage = http://neil.brown.name/blog/mdadm;
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
platforms = platforms.linux;
}; };
} }

View File

@ -13,8 +13,9 @@ stdenv.mkDerivation {
makeFlagsArray=(SBINDIR=$out/sbin MANDIR=$out/share/man/man8) makeFlagsArray=(SBINDIR=$out/sbin MANDIR=$out/share/man/man8)
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/mingetty; homepage = https://sourceforge.net/projects/mingetty;
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
platforms = platforms.linux;
}; };
} }

View File

@ -1,8 +1,8 @@
{stdenv, fetchurl, openldap, perl}: {stdenv, fetchurl, openldap, perl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "nss_ldap-265"; name = "nss_ldap-265";
src = fetchurl { src = fetchurl {
url = http://www.padl.com/download/nss_ldap-265.tar.gz; url = http://www.padl.com/download/nss_ldap-265.tar.gz;
sha256 = "1a16q9p97d2blrj0h6vl1xr7dg7i4s8x8namipr79mshby84vdbp"; sha256 = "1a16q9p97d2blrj0h6vl1xr7dg7i4s8x8namipr79mshby84vdbp";
@ -29,7 +29,9 @@ stdenv.mkDerivation {
buildInputs = [ openldap perl ]; buildInputs = [ openldap perl ];
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux; description = "LDAP module for the Solaris Nameservice Switch (NSS)";
license = licenses.gpl2;
platforms = platforms.linux;
}; };
} }

View File

@ -81,10 +81,11 @@ stdenv.mkDerivation rec {
mv $out/bin/su $su/bin mv $out/bin/su $su/bin
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://pkg-shadow.alioth.debian.org/; homepage = https://github.com/shadow-maint;
description = "Suite containing authentication-related tools such as passwd and su"; description = "Suite containing authentication-related tools such as passwd and su";
platforms = stdenv.lib.platforms.linux; license = licenses.bsd3;
platforms = platforms.linux;
}; };
passthru = { passthru = {

View File

@ -198,10 +198,11 @@ in stdenv.mkDerivation rec {
# runtime; otherwise we can't and we need to reboot. # runtime; otherwise we can't and we need to reboot.
passthru.interfaceVersion = 2; passthru.interfaceVersion = 2;
meta = { meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/systemd; homepage = http://www.freedesktop.org/wiki/Software/systemd;
description = "A system and service manager for Linux"; description = "A system and service manager for Linux";
platforms = stdenv.lib.platforms.linux; license = licenses.lgpl21Plus;
maintainers = [ stdenv.lib.maintainers.eelco ]; platforms = platforms.linux;
maintainers = [ maintainers.eelco ];
}; };
} }

View File

@ -41,6 +41,10 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.ntp.org/; homepage = http://www.ntp.org/;
description = "An implementation of the Network Time Protocol"; description = "An implementation of the Network Time Protocol";
license = {
# very close to isc and bsd2
url = https://www.eecis.udel.edu/~mills/ntp/html/copyright.html;
};
maintainers = [ maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = platforms.linux; platforms = platforms.linux;
}; };

View File

@ -55,10 +55,11 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://ppp.samba.org/; homepage = https://ppp.samba.org/;
description = "Point-to-point implementation for Linux and Solaris"; description = "Point-to-point implementation for Linux and Solaris";
platforms = stdenv.lib.platforms.linux; license = with licenses; [ bsdOriginal publicDomain gpl2 lgpl2 ];
maintainers = [ stdenv.lib.maintainers.falsifian ]; platforms = platforms.linux;
maintainers = [ maintainers.falsifian ];
}; };
} }

View File

@ -22,10 +22,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ perl which ]; nativeBuildInputs = [ perl which ];
meta = { meta = with stdenv.lib; {
description = "PPTP client for Linux"; description = "PPTP client for Linux";
homepage = http://pptpclient.sourceforge.net/; homepage = http://pptpclient.sourceforge.net/;
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
maintainers = [ ]; platforms = platforms.linux;
}; };
} }

View File

@ -16,7 +16,10 @@ stdenv.mkDerivation {
sha256 = "0x969152znxxjbj7387xb38waslr4yv6bnj5jmhb4rpqxphvk54f"; sha256 = "0x969152znxxjbj7387xb38waslr4yv6bnj5jmhb4rpqxphvk54f";
}; };
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.unix; description = "Simple tool to make temporary file handling in shells scripts safe and simple";
homepage = https://www.mktemp.org;
license = licenses.isc;
platforms = platforms.unix;
}; };
} }