2020-03-06 01:58:17 +00:00
|
|
|
{ stdenv, buildPackages, autoreconfHook, fetchurl, fetchpatch }:
|
2015-03-16 14:45:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-12-24 01:08:23 +00:00
|
|
|
name = "alsa-firmware-1.2.4";
|
2015-03-16 14:45:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-10 19:56:20 +01:00
|
|
|
url = "mirror://alsa/firmware/${name}.tar.bz2";
|
2020-12-24 01:08:23 +00:00
|
|
|
sha256 = "sha256-tnttfQi8/CR+9v8KuIqZwYgwWjz1euLf0LzZpbNs1bs=";
|
2015-03-16 14:45:21 +00:00
|
|
|
};
|
|
|
|
|
2020-03-06 01:58:17 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook buildPackages.stdenv.cc ];
|
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-hotplug-dir=$(out)/lib/firmware"
|
|
|
|
];
|
2015-03-16 14:45:21 +00:00
|
|
|
|
2015-03-17 00:12:21 +00:00
|
|
|
dontStrip = true;
|
2015-03-16 14:45:21 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# These are lifted from the Arch PKGBUILD
|
|
|
|
# remove files which conflicts with linux-firmware
|
2015-03-16 16:55:45 +00:00
|
|
|
rm -rf $out/lib/firmware/{ct{efx,speq}.bin,ess,korg,sb16,yamaha}
|
2015-03-16 14:45:21 +00:00
|
|
|
# remove broken symlinks (broken upstream)
|
2015-03-16 16:55:45 +00:00
|
|
|
rm -rf $out/lib/firmware/turtlebeach
|
2015-03-16 14:45:21 +00:00
|
|
|
# remove empty dir
|
2015-03-16 16:55:45 +00:00
|
|
|
rm -rf $out/bin
|
2015-03-16 14:45:21 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.alsa-project.org/";
|
2015-03-18 20:22:33 +00:00
|
|
|
description = "Soundcard firmwares from the alsa project";
|
2015-03-16 14:45:21 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-03-16 14:45:21 +00:00
|
|
|
};
|
|
|
|
}
|