Merge pull request #46497 from markuskowa/licenses-15

Add licenses
This commit is contained in:
xeji 2018-09-10 22:56:03 +02:00 committed by GitHub
commit f0839455e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 59 additions and 34 deletions

View File

@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
preInstall = '' mkdir -p $out/man/man1 $out/bin ''; preInstall = '' mkdir -p $out/man/man1 $out/bin '';
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.bsdOriginal;
}; };
} }

View File

@ -31,9 +31,10 @@ stdenv.mkDerivation rec {
--prefix PATH : "$prefix/bin:$PATH" --prefix PATH : "$prefix/bin:$PATH"
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://github.com/ljanyst/carddav-util; homepage = https://github.com/ljanyst/carddav-util;
description = "A CardDAV import/export utility"; description = "A CardDAV import/export utility";
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
license = licenses.isc;
}; };
} }

View File

@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "0lnz0z57phl6s52hjvlryn96xrlph9b0h89ahhv027sa79pj8g4g"; sha256 = "0lnz0z57phl6s52hjvlryn96xrlph9b0h89ahhv027sa79pj8g4g";
}; };
meta = { meta = with stdenv.lib; {
homepage = http://zakalwe.fi/~shd/foss/cksfv/; homepage = http://zakalwe.fi/~shd/foss/cksfv/;
description = "A tool for verifying files against a SFV checksum file"; description = "A tool for verifying files against a SFV checksum file";
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
license = licenses.gpl2;
}; };
} }

View File

@ -34,10 +34,11 @@ stdenv.mkDerivation rec {
find $out -type f -print0 | xargs --null sed -i 's|${stdenv.shellPackage}|${runtimeShellPackage}|' find $out -type f -print0 | xargs --null sed -i 's|${stdenv.shellPackage}|${runtimeShellPackage}|'
''; '';
meta = { meta = with stdenv.lib; {
description = "A client for the Dynamic Host Configuration Protocol (DHCP)"; description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
homepage = https://roy.marples.name/projects/dhcpcd; homepage = https://roy.marples.name/projects/dhcpcd;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ eelco fpletz ]; license = licenses.bsd2;
maintainers = with maintainers; [ eelco fpletz ];
}; };
} }

View File

@ -17,9 +17,10 @@ stdenv.mkDerivation rec {
cp dhcpdump $out/bin cp dhcpdump $out/bin
''; '';
meta = { meta = with stdenv.lib; {
description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; description = "A tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses";
homepage = https://packages.ubuntu.com/ru/lucid/dhcpdump; homepage = http://www.mavetju.org/unix/dhcpdump-man.php;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.bsd2;
}; };
} }

View File

@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/deiv/driftnet; homepage = https://github.com/deiv/driftnet;
maintainers = with maintainers; [ offline ]; maintainers = with maintainers; [ offline ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
} }

View File

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
platforms = with platforms; linux; platforms = with platforms; linux;
homepage = https://github.com/nicm/fdm; homepage = https://github.com/nicm/fdm;
downloadPage = https://github.com/nicm/fdm/releases; downloadPage = https://github.com/nicm/fdm/releases;
license = licenses.isc;
}; };
} }

View File

@ -24,9 +24,11 @@ stdenv.mkDerivation rec {
sed -e 's@/sbin/ifconfig@${nettools}/sbin/ifconfig@g' -i src/device-*.C sed -e 's@/sbin/ifconfig@${nettools}/sbin/ifconfig@g' -i src/device-*.C
''; '';
meta = { meta = with stdenv.lib; {
description = "A protected multinode virtual network"; description = "A protected multinode virtual network";
maintainers = [ stdenv.lib.maintainers.raskin ]; homepage = http://software.schmorp.de/pkg/gvpe.html;
platforms = with stdenv.lib.platforms; linux ++ freebsd; maintainers = [ maintainers.raskin ];
platforms = with platforms; linux ++ freebsd;
license = licenses.gpl2;
}; };
} }

View File

@ -76,10 +76,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with stdenv.lib; {
homepage = https://libreswan.org; homepage = https://libreswan.org;
description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange"; description = "A free software implementation of the VPN protocol based on IPSec and the Internet Key Exchange";
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.freebsd; platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
maintainers = [ stdenv.lib.maintainers.afranchuk ]; license = licenses.gpl2;
maintainers = [ maintainers.afranchuk ];
}; };
} }

View File

@ -19,10 +19,11 @@ let
makeFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)"; makeFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
meta = { meta = with stdenv.lib; {
homepage = http://miniupnp.free.fr/; homepage = http://miniupnp.free.fr/;
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification"; description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
platforms = with stdenv.lib.platforms; linux ++ freebsd ++ darwin; platforms = with platforms; linux ++ freebsd ++ darwin;
license = licenses.bsd3;
}; };
}; };
in { in {

View File

@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
homepage = http://miniupnp.free.fr/; homepage = http://miniupnp.free.fr/;
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification"; description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.bsd3;
}; };
} }

View File

@ -35,5 +35,6 @@ stdenv.mkDerivation rec {
homepage = https://www.ncftp.com/ncftp/; homepage = https://www.ncftp.com/ncftp/;
maintainers = with maintainers; [ bjornfor ]; maintainers = with maintainers; [ bjornfor ];
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.clArtistic;
}; };
} }

View File

@ -18,8 +18,10 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Mail sorter for Maildirs"; description = "Mail sorter for Maildirs";
homepage = http://philter.sourceforge.net;
maintainers = with maintainers; [ raskin ]; maintainers = with maintainers; [ raskin ];
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
passthru = { passthru = {

View File

@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
homepage = http://www.web-polygraph.org; homepage = http://www.web-polygraph.org;
description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries"; description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.asl20;
maintainers = [ maintainers.lethalman ]; maintainers = [ maintainers.lethalman ];
}; };
} }

View File

@ -11,14 +11,15 @@ buildPythonApplication rec {
sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4"; sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4";
}; };
meta = { meta = with stdenv.lib; {
description = "A tool to aggregate several remote shells into one"; description = "A tool to aggregate several remote shells into one";
longDescription = '' longDescription = ''
Polysh is a tool to aggregate several remote shells into one. It Polysh is a tool to aggregate several remote shells into one. It
is used to launch an interactive remote shell on many machines is used to launch an interactive remote shell on many machines
at once. at once.
''; '';
maintainers = with stdenv.lib.maintainers; [ astsmtl ]; maintainers = [ maintainers.astsmtl ];
homepage = http://guichaz.free.fr/polysh/; homepage = http://guichaz.free.fr/polysh/;
license = licenses.gpl2;
}; };
} }

View File

@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
description = "The PPTP Server for Linux"; description = "The PPTP Server for Linux";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ obadz ]; maintainers = with maintainers; [ obadz ];
license = licenses.gpl2;
}; };
} }

View File

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
homepage = http://wiki.ucis.nl/QuickTun; homepage = http://wiki.ucis.nl/QuickTun;
maintainers = [ maintainers.fpletz ]; maintainers = [ maintainers.fpletz ];
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.bsd2;
}; };
} }

View File

@ -21,9 +21,10 @@ stdenv.mkDerivation rec {
sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@' sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@'
''; '';
meta = { meta = with stdenv.lib; {
description = "Roaring Penguin Point-to-Point over Ethernet tool"; description = "Roaring Penguin Point-to-Point over Ethernet tool";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
homepage = https://www.roaringpenguin.com/products/pppoe; homepage = https://www.roaringpenguin.com/products/pppoe;
license = licenses.gpl2Plus;
}; };
} }

View File

@ -20,9 +20,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
meta = { meta = with stdenv.lib; {
homepage = http://vde.sourceforge.net/; homepage = http://vde.sourceforge.net/;
description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network";
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
license = licenses.gpl2;
}; };
} }

View File

@ -25,8 +25,9 @@ stdenv.mkDerivation rec {
cp vconfig.8 $out/share/man/man8/ cp vconfig.8 $out/share/man/man8/
''; '';
meta = { meta = with stdenv.lib; {
description = "User mode programs to enable VLANs on Ethernet devices"; description = "User mode programs to enable VLANs on Ethernet devices";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.gpl2Plus;
}; };
} }

View File

@ -23,7 +23,10 @@ stdenv.mkDerivation {
"--enable-shared" "--enable-shared"
]; ];
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.unix; description = "Web server log file analysis program";
homepage = http://www.webalizer.org;
platforms = platforms.unix;
license = licenses.gpl2;
}; };
} }