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 '';
meta = {
platforms = stdenv.lib.platforms.linux;
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.bsdOriginal;
};
}

View file

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

View file

@ -2,15 +2,16 @@
stdenv.mkDerivation rec {
name = "cksfv-1.3.14";
src = fetchurl {
url = "http://zakalwe.fi/~shd/foss/cksfv/files/${name}.tar.bz2";
sha256 = "0lnz0z57phl6s52hjvlryn96xrlph9b0h89ahhv027sa79pj8g4g";
};
meta = {
meta = with stdenv.lib; {
homepage = http://zakalwe.fi/~shd/foss/cksfv/;
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}|'
'';
meta = {
meta = with stdenv.lib; {
description = "A client for the Dynamic Host Configuration Protocol (DHCP)";
homepage = https://roy.marples.name/projects/dhcpcd;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ eelco fpletz ];
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = with maintainers; [ eelco fpletz ];
};
}

View file

@ -17,9 +17,10 @@ stdenv.mkDerivation rec {
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";
homepage = https://packages.ubuntu.com/ru/lucid/dhcpdump;
platforms = stdenv.lib.platforms.linux;
homepage = http://www.mavetju.org/unix/dhcpdump-man.php;
platforms = platforms.linux;
license = licenses.bsd2;
};
}

View file

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

View file

@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
platforms = with platforms; linux;
homepage = https://github.com/nicm/fdm;
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
'';
meta = {
meta = with stdenv.lib; {
description = "A protected multinode virtual network";
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = with stdenv.lib.platforms; linux ++ freebsd;
homepage = http://software.schmorp.de/pkg/gvpe.html;
maintainers = [ maintainers.raskin ];
platforms = with platforms; linux ++ freebsd;
license = licenses.gpl2;
};
}

View file

@ -76,10 +76,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
meta = {
meta = with stdenv.lib; {
homepage = https://libreswan.org;
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;
maintainers = [ stdenv.lib.maintainers.afranchuk ];
platforms = platforms.linux ++ platforms.darwin ++ platforms.freebsd;
license = licenses.gpl2;
maintainers = [ maintainers.afranchuk ];
};
}

View file

@ -19,10 +19,11 @@ let
makeFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
meta = {
meta = with stdenv.lib; {
homepage = http://miniupnp.free.fr/;
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 {

View file

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

View file

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

View file

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

View file

@ -9,11 +9,12 @@ stdenv.mkDerivation rec {
};
buildInputs = [ openssl zlib ncurses ];
meta = with stdenv.lib; {
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";
platforms = platforms.linux;
license = licenses.asl20;
maintainers = [ maintainers.lethalman ];
};
}

View file

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

View file

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

View file

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

View file

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

View file

@ -20,9 +20,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
meta = {
meta = with stdenv.lib; {
homepage = http://vde.sourceforge.net/;
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/
'';
meta = {
meta = with stdenv.lib; {
description = "User mode programs to enable VLANs on Ethernet devices";
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = licenses.gpl2Plus;
};
}

View file

@ -11,10 +11,10 @@ stdenv.mkDerivation {
preConfigure =
''
substituteInPlace ./configure \
--replace "--static" ""
--replace "--static" ""
'';
buildInputs = [zlib libpng gd geoip db];
buildInputs = [zlib libpng gd geoip db];
configureFlags = [
"--enable-dns"
@ -23,7 +23,10 @@ stdenv.mkDerivation {
"--enable-shared"
];
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "Web server log file analysis program";
homepage = http://www.webalizer.org;
platforms = platforms.unix;
license = licenses.gpl2;
};
}