2022-05-05 17:43:05 +01:00
|
|
|
{lib, gcc10Stdenv, fetchurl}:
|
2012-10-27 18:33:47 +01:00
|
|
|
|
2022-05-05 17:43:05 +01:00
|
|
|
gcc10Stdenv.mkDerivation rec {
|
2012-10-27 18:33:47 +01:00
|
|
|
version = "3.99-u4-b5";
|
2022-05-07 19:20:50 +01:00
|
|
|
pname = "monkeys-audio-old";
|
2012-10-27 18:33:47 +01:00
|
|
|
|
|
|
|
patches = [ ./buildfix.diff ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2022-05-07 19:20:50 +01:00
|
|
|
/*
|
|
|
|
The real homepage is <https://monkeysaudio.com/>, but in fact we are
|
|
|
|
getting an old, ported to Linux version of the sources, made by (quoting
|
|
|
|
from the AUTHORS file found in the source):
|
|
|
|
|
|
|
|
Frank Klemm : First port to linux (with makefile)
|
|
|
|
|
|
|
|
SuperMMX <SuperMMX AT GMail DOT com> : Package the source, include the frontend and shared lib,
|
|
|
|
porting to Big Endian platform and adding other non-win32 enhancement.
|
|
|
|
*/
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
|
2012-10-27 18:33:47 +01:00
|
|
|
sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz";
|
|
|
|
};
|
2014-01-28 17:11:00 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-11 11:00:49 +01:00
|
|
|
description = "Lossless audio codec";
|
2014-01-28 17:11:00 +00:00
|
|
|
platforms = platforms.linux;
|
2022-05-07 19:31:35 +01:00
|
|
|
# This is not considered a GPL license, but it seems rather free although
|
|
|
|
# it's not standard, see a quote of it:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/171682#issuecomment-1120260551
|
|
|
|
license = licenses.free;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = [ ];
|
2014-01-28 17:11:00 +00:00
|
|
|
};
|
2012-10-27 18:33:47 +01:00
|
|
|
}
|