2021-01-22 23:30:50 +03:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, alsa-ucm-conf, alsa-topology-conf }:
|
2009-04-21 13:56:02 +04:00
|
|
|
|
2009-10-30 18:05:13 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-24 04:03:11 +03:00
|
|
|
pname = "alsa-lib";
|
|
|
|
version = "1.2.4";
|
2013-02-23 15:59:28 +04:00
|
|
|
|
2009-04-21 13:56:02 +04:00
|
|
|
src = fetchurl {
|
2020-12-24 04:03:11 +03:00
|
|
|
url = "mirror://alsa/lib/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "sha256-91VL4aVs3/RotY/BwpuVtkhkxZADjdMJx6l4xxFpCPc=";
|
2009-10-30 18:05:13 +03:00
|
|
|
};
|
2013-02-23 15:59:28 +04:00
|
|
|
|
2013-12-06 22:26:28 +04:00
|
|
|
patches = [
|
2014-09-11 07:01:08 +04:00
|
|
|
./alsa-plugin-conf-multilib.patch
|
2021-01-22 23:30:50 +03:00
|
|
|
(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=";
|
|
|
|
})
|
2013-12-06 22:26:28 +04:00
|
|
|
];
|
2013-02-23 15:59:28 +04:00
|
|
|
|
2020-03-22 20:40:47 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-04-21 13:56:02 +04:00
|
|
|
# Fix pcm.h file in order to prevent some compilation bugs
|
2009-10-30 18:05:13 +03:00
|
|
|
postPatch = ''
|
2009-04-21 13:56:02 +04:00
|
|
|
sed -i -e 's|//int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);|/\*int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);\*/|' include/pcm.h
|
2020-03-22 20:40:47 +03:00
|
|
|
'';
|
2013-02-23 15:59:28 +04:00
|
|
|
|
2020-03-22 20:40:47 +03:00
|
|
|
postInstall = ''
|
|
|
|
ln -s ${alsa-ucm-conf}/share/alsa/{ucm,ucm2} $out/share/alsa
|
|
|
|
ln -s ${alsa-topology-conf}/share/alsa/topology $out/share/alsa
|
2009-04-21 13:56:02 +04:00
|
|
|
'';
|
2010-08-12 00:11:12 +04:00
|
|
|
|
2016-08-29 03:30:01 +03:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-08 12:23:19 +03:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.alsa-project.org/";
|
2009-04-21 13:56:02 +04:00
|
|
|
description = "ALSA, the Advanced Linux Sound Architecture libraries";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
|
|
MIDI functionality to the Linux-based operating system.
|
|
|
|
'';
|
|
|
|
|
2021-01-17 05:47:53 +03:00
|
|
|
license = licenses.lgpl21Plus;
|
2014-06-19 22:24:23 +04:00
|
|
|
platforms = platforms.linux;
|
2009-04-21 13:56:02 +04:00
|
|
|
};
|
|
|
|
}
|