Merge pull request #45077 from markuskowa/licenses-c

Add license meta tags

xeji 4f9c7ea1 f207998d

Changed files
+34 -19
pkgs
development
libraries
cppunit
cracklib
os-specific
linux
cpufrequtils
cramfsswap
tools
archivers
cpio
cromfs
misc
cowsay
system
virtualization
cri-tools
+3 -2
pkgs/development/libraries/cppunit/default.nix
···
sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
};
-
meta = {
+
meta = with stdenv.lib; {
homepage = https://freedesktop.org/wiki/Software/cppunit/;
description = "C++ unit testing framework";
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.lgpl21;
+
platforms = platforms.linux ++ platforms.darwin;
};
}
+1
pkgs/development/libraries/cracklib/default.nix
···
meta = with stdenv.lib; {
homepage = https://github.com/cracklib/cracklib;
description = "A library for checking the strength of passwords";
+
license = licenses.lgpl21; # Different license for the wordlist: http://www.openwall.com/wordlists
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
+4 -2
pkgs/os-specific/linux/cpufrequtils/default.nix
···
buildInputs = [ stdenv.cc.libc.linuxHeaders libtool gettext ];
-
meta = {
+
meta = with stdenv.lib; {
description = "Tools to display or change the CPU governor settings";
-
platforms = stdenv.lib.platforms.linux;
+
homepage = http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html;
+
license = licenses.gpl2;
+
platforms = platforms.linux;
};
}
+5 -2
pkgs/os-specific/linux/cramfsswap/default.nix
···
buildInputs = [zlib];
-
meta = {
-
platforms = stdenv.lib.platforms.linux;
+
meta = with stdenv.lib; {
+
description = "swap endianess of a cram filesystem (cramfs)";
+
homepage = "https://packages.debian.org/sid/utils/cramfsswap";
+
license = licenses.gpl2;
+
platforms = platforms.linux;
};
}
+3 -2
pkgs/tools/archivers/cpio/default.nix
···
enableParallelBuilding = true;
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/cpio/;
description = "A program to create or extract from cpio archives";
-
platforms = stdenv.lib.platforms.all;
+
license = licenses.gpl3;
+
platforms = platforms.all;
priority = 6; # resolves collision with gnutar's "libexec/rmt"
};
}
+4 -3
pkgs/tools/archivers/cromfs/default.nix
···
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse perl ];
-
meta = {
+
meta = with stdenv.lib; {
description = "FUSE Compressed ROM filesystem with lzma";
homepage = https://bisqwit.iki.fi/source/cromfs.html;
-
maintainers = [ stdenv.lib.maintainers.viric ];
-
platforms = stdenv.lib.platforms.linux;
+
license = licenses.gpl3;
+
maintainers = [ maintainers.viric ];
+
platforms = platforms.linux;
};
}
+5 -4
pkgs/tools/misc/cowsay/default.nix
···
bash ./install.sh $out
'';
-
meta = {
+
meta = with stdenv.lib; {
description = "A program which generates ASCII pictures of a cow with a message";
-
homepage = http://www.nog.net/~tony/warez/cowsay.shtml;
-
platforms = stdenv.lib.platforms.all;
-
maintainers = [ stdenv.lib.maintainers.rob ];
+
homepage = https://en.wikipedia.org/wiki/Cowsay;
+
license = licenses.gpl1;
+
platforms = platforms.all;
+
maintainers = [ maintainers.rob ];
};
}
+4 -3
pkgs/tools/system/cron/default.nix
···
hardeningEnable = [ "pie" ];
preBuild = ''
-
# do not set sticky bit in /nix/store
+
# do not set sticky bit in /nix/store
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
# do not strip during install, broken on cross and we'll do ourselves as needed
substituteInPlace Makefile --replace ' -s cron' ' cron'
···
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
-
meta = {
+
meta = with stdenv.lib; {
description = "Daemon for running commands at specific times (Vixie Cron)";
-
platforms = with stdenv.lib.platforms; linux ++ darwin;
+
license = licenses.bsd0;
+
platforms = with platforms; linux ++ darwin;
};
}
+5 -1
pkgs/tools/virtualization/cri-tools/default.nix
···
-
{ buildGoPackage, fetchurl }:
+
{ buildGoPackage, fetchurl, lib }:
buildGoPackage
{ name = "cri-tools-1.0.0-alpha.0";
···
goPackagePath = "github.com/kubernetes-incubator/cri-tools";
subPackages = [ "cmd/crictl" "cmd/critest" ];
+
+
meta = {
+
license = lib.licenses.asl20;
+
};
goDeps = ./deps.nix;
}