···1+{lib, gcc10Stdenv, fetchurl}:
23+gcc10Stdenv.mkDerivation rec {
4 version = "3.99-u4-b5";
5+ pname = "monkeys-audio-old";
67 patches = [ ./buildfix.diff ];
89 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}