abcm2ps: init at 8.13.15

This commit is contained in:
Robert Schütz 2017-09-17 19:37:50 +02:00 committed by Franz Pletz
parent 3dc65ee2e8
commit 107b181523
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, pkgconfig, which, freetype, pango }:
stdenv.mkDerivation rec {
name = "abcm2ps-${version}";
version = "8.13.15";
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
sha256 = "04j1s4ycd8siidj7xn7s0vwm5sj0qrhqr5qzpila2g8kjc4ldxml";
};
patchPhase = ''
chmod +x configure
'';
configureFlags = [
"--INSTALL=install"
];
buildInputs = [ which pkgconfig freetype pango ];
meta = with stdenv.lib; {
homepage = http://moinejf.free.fr/;
license = licenses.gpl3;
description = "abcm2ps is a command line program which converts ABC to music sheet in PostScript or SVG format";
maintainers = [ maintainers.dotlambda ];
};
}

View File

@ -362,6 +362,8 @@ with pkgs;
a2ps = callPackage ../tools/text/a2ps { };
abcm2ps = callPackage ../tools/audio/abcm2ps { };
abcmidi = callPackage ../tools/audio/abcmidi { };
abduco = callPackage ../tools/misc/abduco { };