1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

abcMIDI: init at 2017.06.10

This commit is contained in:
Robert Schütz 2017-09-15 10:06:38 +02:00 committed by Robert Helgesson
parent 95f88c458b
commit 608045aed5
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86
2 changed files with 25 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };