My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libmpcdec/default.nix

17 lines
406 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libmpcdec";
version = "1.2.6";
src = fetchurl {
url = "https://files.musepack.net/source/libmpcdec-${version}.tar.bz2";
sha256 = "1a0jdyga1zfi4wgkg3905y6inghy3s4xfs5m4x7pal08m0llkmab";
};
meta = {
description = "Musepack SV7 decoder library";
platforms = lib.platforms.unix;
license = lib.licenses.bsd3;
};
}