nixpkgs/pkgs/os-specific/linux/alsa-utils/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchurl, alsaLib, gettext, makeWrapper, ncurses, libsamplerate, pciutils, which, fftw}:
stdenv.mkDerivation rec {
pname = "alsa-utils";
2020-10-22 02:31:37 +02:00
version = "1.2.4";
src = fetchurl {
url = "mirror://alsa/utils/${pname}-${version}.tar.bz2";
2020-10-22 02:31:37 +02:00
sha256 = "09m4dnn4kplawprd2bl15nwa0b4r1brab3x44ga7f1fyk7aw5zwq";
};
nativeBuildInputs = [ gettext makeWrapper ];
buildInputs = [ alsaLib ncurses libsamplerate fftw ];
2018-07-25 23:44:21 +02:00
configureFlags = [ "--disable-xmlto" "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
2019-11-05 02:10:31 +01:00
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
postFixup = ''
2021-01-15 15:45:37 +01:00
wrapProgram $out/bin/alsa-info.sh --prefix PATH : "${lib.makeBinPath [ which pciutils ]}"
'';
meta = with lib; {
2020-02-23 08:36:49 +01:00
homepage = "http://www.alsa-project.org/";
description = "ALSA, the Advanced Linux Sound Architecture utils";
longDescription = ''
The Advanced Linux Sound Architecture (ALSA) provides audio and
MIDI functionality to the Linux-based operating system.
'';
2018-08-14 13:32:42 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];
};
}