abcMIDI: 2017.06.10 -> 2017.11.27

This commit is contained in:
Robert Schütz 2017-12-03 18:11:24 +01:00 committed by Robert Helgesson
parent f649b0497d
commit 601c895bc1
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -1,23 +1,24 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "abcMIDI-${version}"; name = "abcMIDI-${version}";
version = "2017.06.10"; version = "2017.11.27";
src = fetchFromGitHub { # You can find new releases on http://ifdo.ca/~seymour/runabc/top.html
owner = "leesavide"; src = fetchurl {
repo = "abcmidi"; url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
rev = name; sha256 = "095nnyaqnsr3v7hsswpad9g0hxdnr4s6z8yk1bmr3g1j0cfv1xs9";
sha256 = "0y92m3mj63vvy79ksq4z5hgkz6w50drg9a4bmbk6jylny0l0bdpy";
}; };
nativeBuildInputs = [ unzip ];
# There is also a file called "makefile" which seems to be preferred by the standard build phase # There is also a file called "makefile" which seems to be preferred by the standard build phase
makefile = "Makefile"; makefile = "Makefile";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://abc.sourceforge.net/abcMIDI/; homepage = http://abc.sourceforge.net/abcMIDI/;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
description = "abc <-> MIDI conversion utilities"; description = "Utilities for converting between abc and MIDI";
maintainers = [ maintainers.dotlambda ]; maintainers = [ maintainers.dotlambda ];
}; };
} }