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

                         
                        
 
                  
                                                       
                                                                    






                                                          
                                           
                                                   


                                                 
{ stdenv, fetchurl, libmikmod, ncurses }:

stdenv.mkDerivation rec {
  name = "mikmod-3.2.8";

  src = fetchurl {
    url = "mirror://sourceforge/mikmod/${name}.tar.gz";
    sha256 = "1k54p8pn3jinha0f2i23ad15pf1pamibzcxjrbzjbklpcz1ipc6v";
  };

  buildInputs = [ libmikmod ncurses ];

  meta = {
    description = "Tracker music player for the terminal";
    homepage = http://mikmod.shlomifish.org/;
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = with stdenv.lib.maintainers; [ ];
    platforms = with stdenv.lib.platforms; linux;
  };
}