various: correct license (#437682)

This commit is contained in:
Peder Bergebakken Sundt
2025-09-02 00:28:35 +02:00
committed by GitHub
7 changed files with 11 additions and 7 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
raskin
somasis
];
license = licenses.publicDomain;
license = licenses.isc;
platforms = with platforms; linux ++ freebsd ++ openbsd;
};
}
+1 -1
View File
@@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "System and kernel logging services";
homepage = "https://smarden.org/socklog/";
license = lib.licenses.publicDomain;
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ joachifm ];
};
+1 -1
View File
@@ -80,7 +80,7 @@ clangStdenv.mkDerivation rec {
meta = {
description = "Extensive set of frameworks which form a complete Web application server environment";
license = lib.licenses.publicDomain;
license = lib.licenses.lgpl2Plus;
homepage = "https://github.com/Alinto/sope";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ jceb ];
+5 -1
View File
@@ -44,7 +44,11 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Single-file public domain libraries for C/C++";
homepage = "https://github.com/nothings/stb";
license = licenses.publicDomain;
license = with licenses; [
mit
# OR
unlicense
];
platforms = platforms.all;
maintainers = [ ];
};
+1 -1
View File
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
description = "Command-line interface to various pastebins";
mainProgram = "wgetpaste";
homepage = "https://github.com/zlin/wgetpaste";
license = lib.licenses.publicDomain;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
qknight
];
+1 -1
View File
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Simple xargs and apply replacement";
homepage = "https://github.com/leahneukirchen/xe";
license = lib.licenses.publicDomain;
license = lib.licenses.cc0;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.pbsds ];
mainProgram = "xe";
+1 -1
View File
@@ -106,7 +106,7 @@ buildPythonPackage rec {
the public domain, which means you can modify it, redistribute it or use
it however you like.
'';
license = licenses.publicDomain;
license = licenses.unlicense;
maintainers = with maintainers; [
fpletz
];