libaudec: init at 0.2.4
This commit is contained in:
parent
c4bc8f2cc4
commit
f65eae0596
26
pkgs/development/libraries/libaudec/default.nix
Normal file
26
pkgs/development/libraries/libaudec/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub
|
||||||
|
, libsndfile, libsamplerate
|
||||||
|
, meson, ninja, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libaudec";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zrythm";
|
||||||
|
repo = "libaudec";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1570m2dfia17dbkhd2qhx8jjihrpm7g8nnyg6n4wif4vv229s7dz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libsndfile libsamplerate ];
|
||||||
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://www.zrythm.org";
|
||||||
|
description = "A library for reading and resampling audio files";
|
||||||
|
license = licenses.agpl3Plus;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -13290,6 +13290,8 @@ in
|
|||||||
|
|
||||||
libaudclient = callPackage ../development/libraries/libaudclient { };
|
libaudclient = callPackage ../development/libraries/libaudclient { };
|
||||||
|
|
||||||
|
libaudec = callPackage ../development/libraries/libaudec { };
|
||||||
|
|
||||||
libav = libav_11; # branch 11 is API-compatible with branch 10
|
libav = libav_11; # branch 11 is API-compatible with branch 10
|
||||||
libav_all = callPackages ../development/libraries/libav { };
|
libav_all = callPackages ../development/libraries/libav { };
|
||||||
inherit (libav_all) libav_0_8 libav_11 libav_12;
|
inherit (libav_all) libav_0_8 libav_11 libav_12;
|
||||||
|
Loading…
Reference in New Issue
Block a user