summary refs log blame commit diff
path: root/pkgs/os-specific/linux/alsa-utils/default.nix
blob: ad092fa782145da54e7553f68da6456492bd7a11 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                              
                         
                             
  
                  
                                                                 
                                                                    
    
  

                                    
  












                                                                      
{stdenv, fetchurl, alsaLib, gettext, ncurses}:

stdenv.mkDerivation rec {
  name = "alsa-utils-1.0.23";
  
  src = fetchurl {
    url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
    sha256 = "1c7pl5k3d60wacnha8zfn2dixz7hiiaxvijis4559y15bs8mxl5p";
  };
  
  buildInputs = [ alsaLib ncurses ];
  buildNativeInputs = [ gettext ];
  
  configureFlags = "--disable-xmlto";

  meta = {
    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.
    '';

    homepage = http://www.alsa-project.org/;
  };
}