File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
- { stdenv , fetchFromGitHub } :
1
+ { stdenv , fetchurl , unzip } :
2
2
3
3
stdenv . mkDerivation rec {
4
4
name = "abcMIDI-${ version } " ;
5
- version = "2017.06.10 " ;
5
+ version = "2017.11.27 " ;
6
6
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" ;
12
11
} ;
13
12
13
+ nativeBuildInputs = [ unzip ] ;
14
+
14
15
# There is also a file called "makefile" which seems to be preferred by the standard build phase
15
16
makefile = "Makefile" ;
16
17
17
18
meta = with stdenv . lib ; {
18
19
homepage = http://abc.sourceforge.net/abcMIDI/ ;
19
20
license = licenses . gpl2Plus ;
20
- description = "abc <-> MIDI conversion utilities " ;
21
+ description = "Utilities for converting between abc and MIDI " ;
21
22
maintainers = [ maintainers . dotlambda ] ;
22
23
} ;
23
24
}
You can’t perform that action at this time.
0 commit comments