Merge pull request #91883 from markuskowa/fix-lics2

Add licenses
This commit is contained in:
markuskowa 2020-06-30 22:11:08 +02:00 committed by GitHub
commit fd46a12b29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 33 additions and 20 deletions

View File

@ -45,5 +45,6 @@ stdenv.mkDerivation rec {
homepage = "https://openmsx.org"; homepage = "https://openmsx.org";
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix; platforms = platforms.unix;
license = with licenses; [ bsd2 boost gpl2 ];
}; };
} }

View File

@ -15,4 +15,6 @@ stdenv.mkDerivation {
cp -v libresim/libarmsim.so $out/lib/libarmsim.so cp -v libresim/libarmsim.so $out/lib/libarmsim.so
cp -v vc4emul/vc4emul $out/bin/vc4emul cp -v vc4emul/vc4emul $out/bin/vc4emul
''; '';
meta.license = stdenv.lib.licenses.mit;
} }

View File

@ -31,6 +31,7 @@ stdenvNoCC.mkDerivation {
overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays"; overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays";
}; };
meta = with stdenvNoCC.lib; { meta = with stdenvNoCC.lib; {
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ]; inherit (raspberrypifw.meta) platforms homepage license;
description = "DTBs for the Raspberry Pi";
}; };
} }

View File

@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ trevorj ]; maintainers = with maintainers; [ trevorj ];
downloadPage = "https://github.com/jaymzh/iptstate/releases"; downloadPage = "https://github.com/jaymzh/iptstate/releases";
license = licenses.zlib;
}; };
installPhase = '' installPhase = ''

View File

@ -18,7 +18,8 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Linux tools to inspect the gpiochip interface"; description = "Linux tools to inspect the gpiochip interface";
maintainers = with stdenv.lib.maintainers; [ kwohlfahrt ]; maintainers = with maintainers; [ kwohlfahrt ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
} }

View File

@ -22,7 +22,5 @@ stdenv.mkDerivation {
''; # */ ''; # */
allowedReferences = ["out"]; allowedReferences = ["out"];
meta = { inherit (klibc) meta;
platforms = stdenv.lib.platforms.linux;
};
} }

View File

@ -34,5 +34,6 @@ in stdenv.mkDerivation {
homepage = "https://packages.ubuntu.com/source/zesty/kmod"; homepage = "https://packages.ubuntu.com/source/zesty/kmod";
description = "Linux kernel module blacklists from Ubuntu"; description = "Linux kernel module blacklists from Ubuntu";
platforms = platforms.linux; platforms = platforms.linux;
license = with licenses; [ gpl2Plus lgpl21Plus ];
}; };
} }

View File

@ -14,10 +14,11 @@ stdenv.mkDerivation rec {
cp aliases.conf $out cp aliases.conf $out
''; '';
meta = { meta = with lib; {
homepage = "https://packages.debian.org/source/sid/kmod"; homepage = "https://packages.debian.org/source/sid/kmod";
description = "Linux configuration file for modprobe"; description = "Linux configuration file for modprobe";
maintainers = with lib.maintainers; [ mathnerd314 ]; maintainers = with maintainers; [ mathnerd314 ];
platforms = with lib.platforms; linux; platforms = with platforms; linux;
license = with licenses; [ gpl2Plus lgpl21Plus ];
}; };
} }

View File

@ -1,8 +1,8 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libvolume_id-0.81.1"; name = "libvolume_id-0.81.1";
src = fetchurl { src = fetchurl {
url = "https://www.marcuscom.com/downloads/libvolume_id-0.81.1.tar.bz2"; url = "https://www.marcuscom.com/downloads/libvolume_id-0.81.1.tar.bz2";
sha256 = "029z04vdxxsl8gycm9whcljhv6dy4b12ybsxdb99jr251gl1ifs5"; sha256 = "029z04vdxxsl8gycm9whcljhv6dy4b12ybsxdb99jr251gl1ifs5";
@ -18,7 +18,8 @@ stdenv.mkDerivation {
cp -f libvolume_id.so.0 $out/lib/ cp -f libvolume_id.so.0 $out/lib/
"; ";
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
} }

View File

@ -47,9 +47,10 @@ in stdenv.mkDerivation {
cp ${rfkillHook} "$out/bin/rfkill-hook.sh" cp ${rfkillHook} "$out/bin/rfkill-hook.sh"
''; '';
meta = { meta = with stdenv.lib; {
homepage = "http://wireless.kernel.org/en/users/Documentation/rfkill"; homepage = "http://wireless.kernel.org/en/users/Documentation/rfkill";
description = "Rules+hook for udev to catch rfkill state changes"; description = "Rules+hook for udev to catch rfkill state changes";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.mit;
}; };
} }

View File

@ -21,8 +21,9 @@ stdenv.mkDerivation {
preInstall = "mkdir -p $out/share/man/man5/ $out/share/man/man8/ $out/sbin"; preInstall = "mkdir -p $out/share/man/man5/ $out/share/man/man8/ $out/sbin";
meta = { meta = with stdenv.lib; {
description = "A system logging daemon"; description = "A system logging daemon";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.gpl2;
}; };
} }

View File

@ -20,10 +20,11 @@ stdenv.mkDerivation {
CFLAGS = "-I${pixman}/include/pixman-1"; CFLAGS = "-I${pixman}/include/pixman-1";
meta = { meta = with stdenv.lib; {
homepage = "https://cgit.freedesktop.org/xorg/driver/xf86-video-nested"; homepage = "https://cgit.freedesktop.org/xorg/driver/xf86-video-nested";
description = "A driver to run Xorg on top of Xorg or something else"; description = "A driver to run Xorg on top of Xorg or something else";
maintainers = [ stdenv.lib.maintainers.goibhniu ]; maintainers = [ maintainers.goibhniu ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
license = licenses.mit;
}; };
} }

View File

@ -18,5 +18,6 @@ stdenv.mkDerivation rec {
description = "Network-wide ads & trackers blocking DNS server"; description = "Network-wide ads & trackers blocking DNS server";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ numkem ]; maintainers = with maintainers; [ numkem ];
license = licenses.gpl3;
}; };
} }

View File

@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
description = "Simple server for running CGI applications over FastCGI"; description = "Simple server for running CGI applications over FastCGI";
maintainers = with maintainers; [ lethalman ]; maintainers = with maintainers; [ lethalman ];
platforms = with platforms; linux; platforms = with platforms; linux;
license = licenses.mit;
}; };
} }

View File

@ -21,5 +21,6 @@ stdenv.mkDerivation rec {
description = "A modern user interface for hashicorp Consul & Nomad"; description = "A modern user interface for hashicorp Consul & Nomad";
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ numkem ]; maintainers = with maintainers; [ numkem ];
license = licenses.mit;
}; };
} }