57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
17 lines
388 B
Nix
17 lines
388 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libmpcdec-1.2.6";
|
|
|
|
src = fetchurl {
|
|
url = https://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2;
|
|
sha256 = "1a0jdyga1zfi4wgkg3905y6inghy3s4xfs5m4x7pal08m0llkmab";
|
|
};
|
|
|
|
meta = {
|
|
description = "Musepack SV7 decoder library";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|