2016-10-12 18:12:09 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2006-02-02 07:04:04 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-03-03 02:55:20 -08:00
|
|
|
name = "libmpcdec-1.2.6";
|
2016-10-12 18:12:09 -07:00
|
|
|
|
2006-02-02 07:04:04 -08:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = https://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2;
|
2016-10-12 18:12:09 -07:00
|
|
|
sha256 = "1a0jdyga1zfi4wgkg3905y6inghy3s4xfs5m4x7pal08m0llkmab";
|
2006-02-02 07:04:04 -08:00
|
|
|
};
|
2016-08-02 09:06:29 -07:00
|
|
|
|
|
|
|
meta = {
|
2016-10-12 18:12:09 -07:00
|
|
|
description = "Musepack SV7 decoder library";
|
2016-08-02 09:06:29 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-10-12 18:12:09 -07:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2006-02-02 07:04:04 -08:00
|
|
|
}
|