File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , fetchFromGitHub } :
2
+
3
+ stdenv . mkDerivation rec {
4
+ name = "abcMIDI-${ version } " ;
5
+ version = "2017.06.10" ;
6
+
7
+ src = fetchFromGitHub {
8
+ owner = "leesavide" ;
9
+ repo = "abcmidi" ;
10
+ rev = name ;
11
+ sha256 = "0y92m3mj63vvy79ksq4z5hgkz6w50drg9a4bmbk6jylny0l0bdpy" ;
12
+ } ;
13
+
14
+ # There is also a file called "makefile" which seems to be preferred by the standard build phase
15
+ makefile = "Makefile" ;
16
+
17
+ meta = with stdenv . lib ; {
18
+ homepage = http://abc.sourceforge.net/abcMIDI/ ;
19
+ license = licenses . gpl2Plus ;
20
+ description = "abc <-> MIDI conversion utilities" ;
21
+ maintainers = [ maintainers . dotlambda ] ;
22
+ } ;
23
+ }
Original file line number Diff line number Diff line change @@ -362,6 +362,8 @@ with pkgs;
362
362
363
363
a2ps = callPackage ../tools/text/a2ps { };
364
364
365
+ abcmidi = callPackage ../tools/audio/abcmidi { };
366
+
365
367
abduco = callPackage ../tools/misc/abduco { };
366
368
367
369
acbuild = callPackage ../applications/misc/acbuild { };
You can’t perform that action at this time.
0 commit comments