Skip to content

Commit 601c895

Browse files
Robert Schützrycee
Robert Schütz
authored andcommittedDec 5, 2017
abcMIDI: 2017.06.10 -> 2017.11.27
1 parent f649b04 commit 601c895

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed
 

‎pkgs/tools/audio/abcmidi/default.nix

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
{ stdenv, fetchFromGitHub }:
1+
{ stdenv, fetchurl, unzip }:
22

33
stdenv.mkDerivation rec {
44
name = "abcMIDI-${version}";
5-
version = "2017.06.10";
5+
version = "2017.11.27";
66

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

13+
nativeBuildInputs = [ unzip ];
14+
1415
# There is also a file called "makefile" which seems to be preferred by the standard build phase
1516
makefile = "Makefile";
1617

1718
meta = with stdenv.lib; {
1819
homepage = http://abc.sourceforge.net/abcMIDI/;
1920
license = licenses.gpl2Plus;
20-
description = "abc <-> MIDI conversion utilities";
21+
description = "Utilities for converting between abc and MIDI";
2122
maintainers = [ maintainers.dotlambda ];
2223
};
2324
}

0 commit comments

Comments
 (0)
Please sign in to comment.