alsaLib: 1.2.4 -> 1.2.5 (#125590)

This commit is contained in:
r-burns
2021-06-10 01:22:58 +02:00
committed by GitHub
parent 7eca6b2bc9
commit 6c3e91c6ca
+8 -11
View File
@@ -1,24 +1,21 @@
{ lib, stdenv, fetchurl, fetchpatch, alsa-ucm-conf, alsa-topology-conf }:
{ lib
, stdenv
, fetchurl
, alsa-topology-conf
, alsa-ucm-conf
}:
stdenv.mkDerivation rec {
pname = "alsa-lib";
version = "1.2.4";
version = "1.2.5";
src = fetchurl {
url = "mirror://alsa/lib/${pname}-${version}.tar.bz2";
sha256 = "sha256-91VL4aVs3/RotY/BwpuVtkhkxZADjdMJx6l4xxFpCPc=";
sha256 = "067ga0l6zr782kw8jdsqvbb20pcgnl0vkpnnz2n36fq8ii58k4lh";
};
patches = [
./alsa-plugin-conf-multilib.patch
(fetchpatch {
# plucked from upstream master, delete in next release
# without this patch alsa 1.2.4 fails to compile against musl-libc
# due to an overly conservative ifdef gate in a new feature
name = "fix-dlo.patch";
url = "https://github.com/alsa-project/alsa-lib/commit/ad8c8e5503980295dd8e5e54a6285d2d7e32eb1e.patch";
sha256 = "QQP4C1dSnJP1MNKt2el7Wn3KmtwtYzvyIHWdrHs+Jw4=";
})
];
enableParallelBuilding = true;