Skip to content

Commit

Permalink
abcMIDI: init at 2017.06.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz authored and rycee committed Sep 15, 2017
1 parent 95f88c4 commit 608045a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/audio/abcmidi/default.nix
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "abcMIDI-${version}";
version = "2017.06.10";

src = fetchFromGitHub {
owner = "leesavide";
repo = "abcmidi";
rev = name;
sha256 = "0y92m3mj63vvy79ksq4z5hgkz6w50drg9a4bmbk6jylny0l0bdpy";
};

# There is also a file called "makefile" which seems to be preferred by the standard build phase
makefile = "Makefile";

meta = with stdenv.lib; {
homepage = http://abc.sourceforge.net/abcMIDI/;
license = licenses.gpl2Plus;
description = "abc <-> MIDI conversion utilities";
maintainers = [ maintainers.dotlambda ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -362,6 +362,8 @@ with pkgs;

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

abcmidi = callPackage ../tools/audio/abcmidi { };

abduco = callPackage ../tools/misc/abduco { };

acbuild = callPackage ../applications/misc/acbuild { };
Expand Down

0 comments on commit 608045a

Please sign in to comment.