Skip to content

Commit

Permalink
abcMIDI: 2017.06.10 -> 2017.11.27
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz authored and rycee committed Dec 5, 2017
1 parent f649b04 commit 601c895
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pkgs/tools/audio/abcmidi/default.nix
@@ -1,23 +1,24 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchurl, unzip }:

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

src = fetchFromGitHub {
owner = "leesavide";
repo = "abcmidi";
rev = name;
sha256 = "0y92m3mj63vvy79ksq4z5hgkz6w50drg9a4bmbk6jylny0l0bdpy";
# You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
src = fetchurl {
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
sha256 = "095nnyaqnsr3v7hsswpad9g0hxdnr4s6z8yk1bmr3g1j0cfv1xs9";
};

nativeBuildInputs = [ unzip ];

# 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 = "abc <-> MIDI conversion utilities";
description = "Utilities for converting between abc and MIDI";
maintainers = [ maintainers.dotlambda ];
};
}

0 comments on commit 601c895

Please sign in to comment.