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/libopenaptx/default.nix

31 lines
702 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "libopenaptx";
version = "0.2.1";
src = fetchFromGitHub {
owner = "pali";
repo = "libopenaptx";
rev = version;
sha256 = "sha256-4FYKxw1U+efCfzKOPSDJH8a/dG0KV+anJDgxjqzD80k=";
};
makeFlags = [
"PREFIX=${placeholder "out"}"
# disable static builds
"ANAME="
"AOBJECTS="
"STATIC_UTILITIES="
];
enableParallelBuilding = true;
meta = with lib; {
description = "Audio Processing Technology codec (aptX)";
license = licenses.gpl3Plus;
homepage = "https://github.com/pali/libopenaptx";
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}