2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, alsa-ucm-conf, alsa-topology-conf }:
|
2009-04-21 10:56:02 +01:00
|
|
|
|
2009-10-30 15:05:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-24 01:03:11 +00:00
|
|
|
pname = "alsa-lib";
|
|
|
|
version = "1.2.4";
|
2013-02-23 11:59:28 +00:00
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
src = fetchurl {
|
2020-12-24 01:03:11 +00:00
|
|
|
url = "mirror://alsa/lib/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "sha256-91VL4aVs3/RotY/BwpuVtkhkxZADjdMJx6l4xxFpCPc=";
|
2009-10-30 15:05:13 +00:00
|
|
|
};
|
2013-02-23 11:59:28 +00:00
|
|
|
|
2013-12-06 18:26:28 +00:00
|
|
|
patches = [
|
2014-09-11 04:01:08 +01:00
|
|
|
./alsa-plugin-conf-multilib.patch
|
2013-12-06 18:26:28 +00:00
|
|
|
];
|
2013-02-23 11:59:28 +00:00
|
|
|
|
2020-03-22 17:40:47 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
# Fix pcm.h file in order to prevent some compilation bugs
|
2009-10-30 15:05:13 +00:00
|
|
|
postPatch = ''
|
2009-04-21 10:56:02 +01: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 17:40:47 +00:00
|
|
|
'';
|
2013-02-23 11:59:28 +00:00
|
|
|
|
2020-03-22 17:40:47 +00: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 10:56:02 +01:00
|
|
|
'';
|
2010-08-11 21:11:12 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-08 10:23:19 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.alsa-project.org/";
|
2009-04-21 10:56:02 +01: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 02:47:53 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2014-06-19 19:24:23 +01:00
|
|
|
platforms = platforms.linux;
|
2009-04-21 10:56:02 +01:00
|
|
|
};
|
|
|
|
}
|