mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
libopenaptx: init at 0.1.0
This commit is contained in:
parent
f640a81198
commit
9e36eee829
25
pkgs/development/libraries/libopenaptx/default.nix
Normal file
25
pkgs/development/libraries/libopenaptx/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libopenaptx-${version}";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pali";
|
||||
repo = "libopenaptx";
|
||||
rev = version;
|
||||
sha256 = "0996qmkmbax7ccknxrd3bx8xibs79a1ffms69scsj59f3kgj6854";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Audio Processing Technology codec (aptX)";
|
||||
license = licenses.lgpl21Plus;
|
||||
homepage = https://github.com/pali/libopenaptx;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
};
|
||||
}
|
@ -11207,6 +11207,8 @@ in
|
||||
|
||||
liboop = callPackage ../development/libraries/liboop { };
|
||||
|
||||
libopenaptx = callPackage ../development/libraries/libopenaptx { };
|
||||
|
||||
libopus = callPackage ../development/libraries/libopus { };
|
||||
|
||||
libopusenc = callPackage ../development/libraries/libopusenc { };
|
||||
|
Loading…
Reference in New Issue
Block a user