3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/alsa-firmware/default.nix

34 lines
860 B
Nix
Raw Normal View History

2015-03-16 14:45:21 +00:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2019-11-25 06:54:48 +00:00
name = "alsa-firmware-1.2.1";
2015-03-16 14:45:21 +00:00
src = fetchurl {
url = "mirror://alsa/firmware/${name}.tar.bz2";
2019-11-25 06:54:48 +00:00
sha256 = "1aq8z8ajpjvcx7bwhwp36bh5idzximyn77ygk3ifs0my3mbpr8mf";
2015-03-16 14:45:21 +00: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 = {
homepage = http://www.alsa-project.org/;
description = "Soundcard firmwares from the alsa project";
2015-03-16 14:45:21 +00:00
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
2015-03-16 14:45:21 +00:00
};
}