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

                                              
                         
                             
  
                  
                                                                 
                                                                    
    
  

                                    
  
                                                                                   











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

stdenv.mkDerivation rec {
  name = "alsa-utils-1.0.25";
  
  src = fetchurl {
    url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
    sha256 = "0b1hbdq1bdkbz72zdfy5cgp75jqpysb0mqb0n9wy5gsbccpnlrrf";
  };
  
  buildInputs = [ alsaLib ncurses ];
  buildNativeInputs = [ gettext ];
  
  configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";

  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/;
  };
}