summary refs log tree commit diff
path: root/pkgs/games/osu-lazer
diff options
context:
space:
mode:
authorSimon Bruder <simon@sbruder.de>2020-08-19 20:54:11 +0200
committerAlyssa Ross <hi@alyssa.is>2020-08-20 09:12:34 +0000
commit8d45118da70dc11ab71cda76402b0b5c6d3271c9 (patch)
tree4ef95a174cff1760b69f8948807c9e9db6a39ee2 /pkgs/games/osu-lazer
parentd9b0a19e99c14e69c3d1bad0061fd7a37abfb375 (diff)
downloadnixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar.gz
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar.bz2
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar.lz
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar.xz
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.tar.zst
nixpkgs-8d45118da70dc11ab71cda76402b0b5c6d3271c9.zip
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.
Diffstat (limited to 'pkgs/games/osu-lazer')
-rw-r--r--pkgs/games/osu-lazer/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/games/osu-lazer/default.nix b/pkgs/games/osu-lazer/default.nix
index d8197fae156..59e044b482b 100644
--- a/pkgs/games/osu-lazer/default.nix
+++ b/pkgs/games/osu-lazer/default.nix
@@ -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" ];
   };