1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

osu-lazer: add unfreeRedistributable license

The unfree BASS library is a dependency of the osu framework, which
includes the shared library in its repository. The library for the
system runtime is included in the build output.
This commit is contained in:
Simon Bruder 2020-08-19 20:54:11 +02:00 committed by Alyssa Ross
parent d9b0a19e99
commit 8d45118da7

View file

@ -99,7 +99,11 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Rhythm is just a *click* away";
homepage = "https://osu.ppy.sh";
license = with licenses; [ mit cc-by-nc-40 ];
license = with licenses; [
mit
cc-by-nc-40
unfreeRedistributable # osu-framework contains libbass.so in repository
];
maintainers = with maintainers; [ oxalica ];
platforms = [ "x86_64-linux" ];
};