Unverified Commit ac6683e4 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

various: correct license (#437682)

parents cce6879d 4c475554
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
      raskin
      somasis
    ];
    license = licenses.publicDomain;
    license = licenses.isc;
    platforms = with platforms; linux ++ freebsd ++ openbsd;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
    ];
Loading