abcMIDI: 2017.06.10 -> 2017.11.27
This commit is contained in:
parent
f649b0497d
commit
601c895bc1
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user