nixpkgs/pkgs/by-name/al/alsa-oss/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
873 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, alsa-lib, gettext, ncurses, libsamplerate}:
2013-01-28 01:48:57 +00:00
stdenv.mkDerivation rec {
2019-04-11 20:46:35 +00:00
pname = "alsa-oss";
2019-04-11 20:03:07 +00:00
version = "1.1.8";
2013-01-28 01:48:57 +00:00
src = fetchurl {
2019-04-11 20:46:35 +00:00
url = "mirror://alsa/oss-lib/${pname}-${version}.tar.bz2";
sha256 = "13nn6n6wpr2sj1hyqx4r9nb9bwxnhnzw8r2f08p8v13yjbswxbb4";
2013-01-28 01:48:57 +00:00
};
buildInputs = [ alsa-lib ncurses libsamplerate ];
2013-02-15 12:38:07 +00:00
nativeBuildInputs = [ gettext ];
2013-01-28 01:48:57 +00:00
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-xmlto" ];
2013-01-28 01:48:57 +00:00
2019-11-05 01:10:31 +00:00
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
2013-01-28 01:48:57 +00:00
meta = with lib; {
homepage = "http://www.alsa-project.org/";
2013-01-28 01:48:57 +00:00
description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation";
longDescription = ''
The Advanced Linux Sound Architecture (ALSA) provides audio and
MIDI functionality to the Linux-based operating system.
'';
2018-08-14 11:28:51 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
2013-01-28 01:48:57 +00:00
};
}