summary refs log blame commit diff
path: root/pkgs/tools/audio/abcmidi/default.nix
blob: 55f0f2e92bd188b7bc912b39883445a94b5c8be2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                     


                              
                         
 
                                                                        
                  
                                                       
                                                                    







                                                                                                  
                                                                  


                                            
{ stdenv, fetchzip }:

stdenv.mkDerivation rec {
  name = "abcMIDI-${version}";
  version = "2018.01.02";

  # You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
  src = fetchzip {
    url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
    sha256 = "0s8wm637dgzgpgdxba3a6fh06i0c4iwvv9cdghh8msnx428k68iw";
  };

  # There is also a file called "makefile" which seems to be preferred by the standard build phase
  makefile = "Makefile";

  meta = with stdenv.lib; {
    homepage = http://abc.sourceforge.net/abcMIDI/;
    license = licenses.gpl2Plus;
    description = "Utilities for converting between abc and MIDI";
    maintainers = [ maintainers.dotlambda ];
  };
}