Skip to content

Commit 608045a

Browse files
Robert Schützrycee
Robert Schütz
authored andcommittedSep 15, 2017
abcMIDI: init at 2017.06.10
1 parent 95f88c4 commit 608045a

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
 

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

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,8 @@ with pkgs;
362362

363363
a2ps = callPackage ../tools/text/a2ps { };
364364

365+
abcmidi = callPackage ../tools/audio/abcmidi { };
366+
365367
abduco = callPackage ../tools/misc/abduco { };
366368

367369
acbuild = callPackage ../applications/misc/acbuild { };

0 commit comments

Comments
 (0)
Please sign in to comment.