blob: dab5bd782f010348a30edf7060a17ab1ab46b1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libopenaptx";
version = "0.2.1";
src = fetchFromGitHub {
owner = "pali";
repo = "libopenaptx";
rev = finalAttrs.version;
sha256 = "sha256-4FYKxw1U+efCfzKOPSDJH8a/dG0KV+anJDgxjqzD80k=";
};
makeFlags = [
"PREFIX=${placeholder "out"}"
# disable static builds
"ANAME="
"AOBJECTS="
"STATIC_UTILITIES="
];
enableParallelBuilding = true;
meta = {
description = "Audio Processing Technology codec (aptX)";
license = lib.licenses.gpl3Plus;
homepage = "https://github.com/pali/libopenaptx";
platforms = lib.platforms.linux;
maintainers = [ ];
};
})
|