Add monkey's audio (.ape) lossless encoder/decoder.

@vcunat: include version in the name, as is our custom
This commit is contained in:
Petr Rockai
2013-05-18 13:24:30 +02:00
committed by Vladimír Čunát
parent 7abebbad4d
commit a7123fc280
3 changed files with 43 additions and 0 deletions
@@ -0,0 +1,14 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "3.99-u4-b5";
pname = "monkeys-audio";
name = pname + "-" + version;
patches = [ ./buildfix.diff ];
src = fetchurl {
url = "http://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz";
};
}