Commit 4c475554 authored by jopejoe1's avatar jopejoe1
Browse files

stb: switch license to mit or unlicense

parent 290a166e
Loading
Loading
Loading
Loading
+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 = [ ];
  };