Merge pull request #270411 from thiagokokada/fix-retroarch-licenses

libretro: fix meta.license attribute

authored by Thiago Kenji Okada and committed by GitHub bcc23ba4 4716d207

+32 -16
+32 -16
pkgs/applications/emulators/retroarch/cores.nix
··· 390 preBuild = "cd svn-current/trunk"; 391 meta = { 392 description = "Port of Final Burn Alpha ~2012 to libretro"; 393 - license = "Non-commercial"; 394 }; 395 }; 396 ··· 400 preBuild = "cd src/burner/libretro"; 401 meta = { 402 description = "Port of FBNeo to libretro"; 403 - license = "Non-commercial"; 404 }; 405 }; 406 ··· 430 makefile = "Makefile"; 431 meta = { 432 description = "FMSX libretro port"; 433 - license = "Non-commercial"; 434 }; 435 }; 436 ··· 463 core = "genesis-plus-gx"; 464 meta = { 465 description = "Enhanced Genesis Plus libretro port"; 466 - license = "Non-commercial"; 467 }; 468 }; 469 ··· 524 makeFlags = lib.optional (!stdenv.hostPlatform.isx86) "IS_X86=0"; 525 meta = { 526 description = "Port of MAME ~2000 to libretro, compatible with MAME 0.37b5 sets"; 527 - license = "MAME"; 528 }; 529 }; 530 ··· 533 makefile = "Makefile"; 534 meta = { 535 description = "Port of MAME ~2003 to libretro, compatible with MAME 0.78 sets"; 536 - license = "MAME"; 537 }; 538 }; 539 ··· 542 makefile = "Makefile"; 543 meta = { 544 description = "Port of MAME ~2003+ to libretro, compatible with MAME 0.78 sets"; 545 - license = "MAME"; 546 }; 547 }; 548 ··· 552 makeFlags = lib.optionals stdenv.hostPlatform.isAarch64 [ "PTR64=1" "ARM_ENABLED=1" "X86_SH2DRC=0" "FORCE_DRC_C_BACKEND=1" ]; 553 meta = { 554 description = "Port of MAME ~2010 to libretro, compatible with MAME 0.139 sets"; 555 - license = "MAME"; 556 }; 557 }; 558 ··· 566 enableParallelBuilding = false; 567 meta = { 568 description = "Port of MAME ~2015 to libretro, compatible with MAME 0.160 sets"; 569 - license = "MAME"; 570 }; 571 }; 572 ··· 708 makeFlags = [ "CC_PREFIX=${stdenv.cc.targetPrefix}" ]; 709 meta = { 710 description = "Opera is a port of 4DO/libfreedo to libretro"; 711 - license = "Non-commercial"; 712 }; 713 }; 714 ··· 782 dontConfigure = true; 783 meta = { 784 description = "Fast MegaDrive/MegaCD/32X emulator"; 785 - license = "MAME"; 786 }; 787 }; 788 ··· 901 preBuild = "cd libretro"; 902 meta = { 903 description = "Port of SNES9x git to libretro"; 904 - license = "Non-commercial"; 905 }; 906 }; 907 ··· 910 makefile = "Makefile"; 911 meta = { 912 description = "Optimized port/rewrite of SNES9x 1.39 to Libretro"; 913 - license = "Non-commercial"; 914 }; 915 }; 916 ··· 919 makefile = "Makefile"; 920 meta = { 921 description = "Optimized port/rewrite of SNES9x 1.43 to Libretro"; 922 - license = "Non-commercial"; 923 }; 924 }; 925 ··· 930 makeFlags = [ "USE_BLARGG_APU=1" ]; 931 meta = { 932 description = "Optimized port/rewrite of SNES9x 1.43 to Libretro, with Blargg's APU"; 933 - license = "Non-commercial"; 934 }; 935 }; 936 ··· 938 core = "snes9x2010"; 939 meta = { 940 description = "Optimized port/rewrite of SNES9x 1.52+ to Libretro"; 941 - license = "Non-commercial"; 942 }; 943 }; 944
··· 390 preBuild = "cd svn-current/trunk"; 391 meta = { 392 description = "Port of Final Burn Alpha ~2012 to libretro"; 393 + # Non-commercial clause 394 + license = lib.licenses.unfreeRedistributable; 395 }; 396 }; 397 ··· 401 preBuild = "cd src/burner/libretro"; 402 meta = { 403 description = "Port of FBNeo to libretro"; 404 + # Non-commercial clause 405 + license = lib.licenses.unfreeRedistributable; 406 }; 407 }; 408 ··· 432 makefile = "Makefile"; 433 meta = { 434 description = "FMSX libretro port"; 435 + # Non-commercial clause 436 + license = lib.licenses.unfreeRedistributable; 437 }; 438 }; 439 ··· 466 core = "genesis-plus-gx"; 467 meta = { 468 description = "Enhanced Genesis Plus libretro port"; 469 + # Non-commercial clause 470 + license = lib.licenses.unfreeRedistributable; 471 }; 472 }; 473 ··· 528 makeFlags = lib.optional (!stdenv.hostPlatform.isx86) "IS_X86=0"; 529 meta = { 530 description = "Port of MAME ~2000 to libretro, compatible with MAME 0.37b5 sets"; 531 + # MAME license, non-commercial clause 532 + license = lib.licenses.unfreeRedistributable; 533 }; 534 }; 535 ··· 538 makefile = "Makefile"; 539 meta = { 540 description = "Port of MAME ~2003 to libretro, compatible with MAME 0.78 sets"; 541 + # MAME license, non-commercial clause 542 + license = lib.licenses.unfreeRedistributable; 543 }; 544 }; 545 ··· 548 makefile = "Makefile"; 549 meta = { 550 description = "Port of MAME ~2003+ to libretro, compatible with MAME 0.78 sets"; 551 + # MAME license, non-commercial clause 552 + license = lib.licenses.unfreeRedistributable; 553 }; 554 }; 555 ··· 559 makeFlags = lib.optionals stdenv.hostPlatform.isAarch64 [ "PTR64=1" "ARM_ENABLED=1" "X86_SH2DRC=0" "FORCE_DRC_C_BACKEND=1" ]; 560 meta = { 561 description = "Port of MAME ~2010 to libretro, compatible with MAME 0.139 sets"; 562 + # MAME license, non-commercial clause 563 + license = lib.licenses.unfreeRedistributable; 564 }; 565 }; 566 ··· 574 enableParallelBuilding = false; 575 meta = { 576 description = "Port of MAME ~2015 to libretro, compatible with MAME 0.160 sets"; 577 + # MAME license, non-commercial clause 578 + license = lib.licenses.unfreeRedistributable; 579 }; 580 }; 581 ··· 717 makeFlags = [ "CC_PREFIX=${stdenv.cc.targetPrefix}" ]; 718 meta = { 719 description = "Opera is a port of 4DO/libfreedo to libretro"; 720 + # Non-commercial clause 721 + license = lib.licenses.unfreeRedistributable; 722 }; 723 }; 724 ··· 792 dontConfigure = true; 793 meta = { 794 description = "Fast MegaDrive/MegaCD/32X emulator"; 795 + # Non-commercial clause 796 + license = lib.licenses.unfreeRedistributable; 797 }; 798 }; 799 ··· 912 preBuild = "cd libretro"; 913 meta = { 914 description = "Port of SNES9x git to libretro"; 915 + # Non-commercial clause 916 + license = lib.licenses.unfreeRedistributable; 917 }; 918 }; 919 ··· 922 makefile = "Makefile"; 923 meta = { 924 description = "Optimized port/rewrite of SNES9x 1.39 to Libretro"; 925 + # Non-commercial clause 926 + license = lib.licenses.unfreeRedistributable; 927 }; 928 }; 929 ··· 932 makefile = "Makefile"; 933 meta = { 934 description = "Optimized port/rewrite of SNES9x 1.43 to Libretro"; 935 + # Non-commercial clause 936 + license = lib.licenses.unfreeRedistributable; 937 }; 938 }; 939 ··· 944 makeFlags = [ "USE_BLARGG_APU=1" ]; 945 meta = { 946 description = "Optimized port/rewrite of SNES9x 1.43 to Libretro, with Blargg's APU"; 947 + # Non-commercial clause 948 + license = lib.licenses.unfreeRedistributable; 949 }; 950 }; 951 ··· 953 core = "snes9x2010"; 954 meta = { 955 description = "Optimized port/rewrite of SNES9x 1.52+ to Libretro"; 956 + # Non-commercial clause 957 + license = lib.licenses.unfreeRedistributable; 958 }; 959 }; 960