2019-01-21 00:33:00 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2009-04-21 10:56:02 +01:00
|
|
|
|
2009-10-30 15:05:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-09 16:56:31 +01:00
|
|
|
name = "alsa-lib-1.1.9";
|
2013-02-23 11:59:28 +00:00
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
src = fetchurl {
|
2018-06-10 19:56:20 +01:00
|
|
|
url = "mirror://alsa/lib/${name}.tar.bz2";
|
2019-06-09 16:56:31 +01:00
|
|
|
sha256 = "0jwr9g4yxg9gj6xx0sb2r6wrdl8amrjd19hilkrq4rirynp770s8";
|
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
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
# Fix pcm.h file in order to prevent some compilation bugs
|
2013-02-23 11:59:28 +00:00
|
|
|
# 2: see http://stackoverflow.com/questions/3103400/how-to-overcome-u-int8-t-vs-uint8-t-issue-efficiently
|
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
|
2013-02-23 11:59:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
sed -i -e '1i#include <stdint.h>' include/pcm.h
|
|
|
|
sed -i -e 's/u_int\([0-9]*\)_t/uint\1_t/g' include/pcm.h
|
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
|
|
|
|
2014-06-19 19:24:23 +01:00
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 19:24:23 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2009-04-21 10:56:02 +01:00
|
|
|
};
|
|
|
|
}
|