summary refs log blame commit diff
path: root/pkgs/applications/audio/snd/default.nix
blob: 4881360b82e64e038e9f7c5c53f67371a62fde84 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   
                                  
  
 
                         

                   

                  

                                                                    

    
                                     
 
                                           
                                                    
 
                                      
 
                                
 






                                                          
 
{ lib, stdenv, fetchurl, pkg-config
, alsa-lib, fftw, gsl, motif, xorg
}:

stdenv.mkDerivation rec {
  pname = "snd";
  version = "21.1";

  src = fetchurl {
    url = "mirror://sourceforge/snd/snd-${version}.tar.gz";
    sha256 = "1jxvpgx1vqa6bwdzlzyzrjn2swjf9nfhzi9r1r96ivi0870vvjk3";
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ alsa-lib fftw gsl motif ]
    ++ (with xorg; [ libXext libXft libXpm libXt ]);

  configureFlags = [ "--with-motif" ];

  enableParallelBuilding = true;

  meta = with lib; {
    description = "Sound editor";
    homepage = "https://ccrma.stanford.edu/software/snd/";
    platforms = platforms.unix;
    license = licenses.free;
    maintainers = with maintainers; [ ];
  };
}