Merge pull request #171682 from doronbehar/pkg/monkey-audio

authored by Doron Behar and committed by GitHub 938dddf9 98152f70

+17 -4
+17 -4
pkgs/applications/audio/monkeys-audio/default.nix
··· 1 - {lib, stdenv, fetchurl}: 2 3 - stdenv.mkDerivation rec { 4 version = "3.99-u4-b5"; 5 - pname = "monkeys-audio"; 6 7 patches = [ ./buildfix.diff ]; 8 9 src = fetchurl { 10 url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz"; 11 sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz"; 12 }; ··· 14 meta = with lib; { 15 description = "Lossless audio codec"; 16 platforms = platforms.linux; 17 - license = licenses.lgpl2; 18 maintainers = [ ]; 19 }; 20 }
··· 1 + {lib, gcc10Stdenv, fetchurl}: 2 3 + gcc10Stdenv.mkDerivation rec { 4 version = "3.99-u4-b5"; 5 + pname = "monkeys-audio-old"; 6 7 patches = [ ./buildfix.diff ]; 8 9 src = fetchurl { 10 + /* 11 + The real homepage is <https://monkeysaudio.com/>, but in fact we are 12 + getting an old, ported to Linux version of the sources, made by (quoting 13 + from the AUTHORS file found in the source): 14 + 15 + Frank Klemm : First port to linux (with makefile) 16 + 17 + SuperMMX <SuperMMX AT GMail DOT com> : Package the source, include the frontend and shared lib, 18 + porting to Big Endian platform and adding other non-win32 enhancement. 19 + */ 20 url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz"; 21 sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz"; 22 }; ··· 24 meta = with lib; { 25 description = "Lossless audio codec"; 26 platforms = platforms.linux; 27 + # This is not considered a GPL license, but it seems rather free although 28 + # it's not standard, see a quote of it: 29 + # https://github.com/NixOS/nixpkgs/pull/171682#issuecomment-1120260551 30 + license = licenses.free; 31 maintainers = [ ]; 32 }; 33 }