Merge pull request #45156 from markuskowa/lics-tools
Add license meta tags
This commit is contained in:
commit
d70d575151
@ -210,6 +210,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
fullName = "Common Public License 1.0";
|
fullName = "Common Public License 1.0";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
curl = {
|
||||||
|
fullName = "MIT/X11 derivate";
|
||||||
|
url = "https://curl.haxx.se/docs/copyright.html";
|
||||||
|
};
|
||||||
|
|
||||||
doc = spdx {
|
doc = spdx {
|
||||||
spdxId = "DOC";
|
spdxId = "DOC";
|
||||||
fullName = "DOC License";
|
fullName = "DOC License";
|
||||||
|
@ -32,9 +32,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
doCheck = false; # fails 1 of 1 tests
|
doCheck = false; # fails 1 of 1 tests
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://cvs.nongnu.org;
|
homepage = http://cvs.nongnu.org;
|
||||||
description = "Concurrent Versions System - a source control system";
|
description = "Concurrent Versions System - a source control system";
|
||||||
platforms = stdenv.lib.platforms.all;
|
license = licenses.gpl2; # library is GPLv2, main is GPLv1
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,10 +17,11 @@ stdenv.mkDerivation rec {
|
|||||||
"ac_cv_func_realloc_0_nonnull=yes"
|
"ac_cv_func_realloc_0_nonnull=yes"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
branch = "2.5.35";
|
branch = "2.5.35";
|
||||||
homepage = http://flex.sourceforge.net/;
|
homepage = http://flex.sourceforge.net/;
|
||||||
description = "A fast lexical analyser generator";
|
description = "A fast lexical analyser generator";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
|
|||||||
substituteInPlace Makefile.in --replace "tests" " ";
|
substituteInPlace Makefile.in --replace "tests" " ";
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/westes/flex;
|
homepage = https://github.com/westes/flex;
|
||||||
description = "A fast lexical analyser generator";
|
description = "A fast lexical analyser generator";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -41,9 +41,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
dontDisableStatic = stdenv.buildPlatform != stdenv.hostPlatform;
|
dontDisableStatic = stdenv.buildPlatform != stdenv.hostPlatform;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/westes/flex;
|
homepage = https://github.com/westes/flex;
|
||||||
description = "A fast lexical analyser generator";
|
description = "A fast lexical analyser generator";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -33,15 +33,16 @@ stdenv.mkDerivation rec {
|
|||||||
make systemdinstall $makeFlags
|
make systemdinstall $makeFlags
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
maintainers = with maintainers; [ raskin ];
|
||||||
description = ''Console system performance monitor'';
|
description = ''Console system performance monitor'';
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
|
Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
|
||||||
'';
|
'';
|
||||||
inherit version;
|
inherit version;
|
||||||
|
license = licenses.gpl2;
|
||||||
downloadPage = http://atoptool.nl/downloadatop.php;
|
downloadPage = http://atoptool.nl/downloadatop.php;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,9 +10,11 @@ python2Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A tool to find out the processes doing the most IO";
|
description = "A tool to find out the processes doing the most IO";
|
||||||
maintainers = [ stdenv.lib.maintainers.raskin ];
|
homepage = http://guichaz.free.fr/iotop;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.raskin ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{stdenv, autoreconfHook, buildPackages, fetchurl, flex, readline, ed, texinfo}:
|
{ stdenv, autoreconfHook, buildPackages
|
||||||
|
, fetchurl, flex, readline, ed, texinfo
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "bc-1.07.1";
|
name = "bc-1.07.1";
|
||||||
@ -31,6 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "GNU software calculator";
|
description = "GNU software calculator";
|
||||||
homepage = http://www.gnu.org/software/bc/;
|
homepage = http://www.gnu.org/software/bc/;
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -23,8 +23,9 @@ stdenv.mkDerivation {
|
|||||||
rmdir $out/games
|
rmdir $out/games
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A program that displays a pseudorandom message from a database of quotations";
|
description = "A program that displays a pseudorandom message from a database of quotations";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.bsdOriginal;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,8 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
passthru.grubTarget = "";
|
passthru.grubTarget = "";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13,10 +13,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.greenwoodsoftware.com/less/;
|
homepage = http://www.greenwoodsoftware.com/less/;
|
||||||
description = "A more advanced file pager than ‘more’";
|
description = "A more advanced file pager than ‘more’";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -101,6 +101,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A command line tool for transferring files with URL syntax";
|
description = "A command line tool for transferring files with URL syntax";
|
||||||
homepage = https://curl.haxx.se/;
|
homepage = https://curl.haxx.se/;
|
||||||
maintainers = with maintainers; [ lovek323 ];
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
|
license = licenses.curl;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -105,6 +105,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A command line tool for transferring files with URL syntax";
|
description = "A command line tool for transferring files with URL syntax";
|
||||||
homepage = https://curl.haxx.se/;
|
homepage = https://curl.haxx.se/;
|
||||||
maintainers = with maintainers; [ lovek323 ];
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
platforms = platforms.all;
|
license = licenses.curl;
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -20,9 +20,10 @@ stdenv.mkDerivation rec {
|
|||||||
stdenv.lib.optional (coreutils != null) "PR_PROGRAM=${coreutils}/bin/pr"
|
stdenv.lib.optional (coreutils != null) "PR_PROGRAM=${coreutils}/bin/pr"
|
||||||
++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "gl_cv_func_getopt_gnu=yes";
|
++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "gl_cv_func_getopt_gnu=yes";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
|
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
|
||||||
description = "Commands for showing the differences between files (diff, cmp, etc.)";
|
description = "Commands for showing the differences between files (diff, cmp, etc.)";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user