3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/audio/abcm2ps/default.nix

34 lines
798 B
Nix
Raw Normal View History

2018-10-17 16:56:57 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, which, docutils, freetype, pango }:
2017-09-17 18:37:50 +01:00
stdenv.mkDerivation rec {
pname = "abcm2ps";
2020-02-19 15:59:36 +00:00
version = "8.14.7";
2017-09-17 18:37:50 +01:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
2020-02-19 15:59:36 +00:00
sha256 = "0k12wf37vl31w2qpj3dsmv8c4ifrsg3qa30gqsx553jw7n0f3ma2";
2017-09-17 18:37:50 +01:00
};
configureFlags = [
"--INSTALL=install"
];
buildFlags = [
"CC=${stdenv.cc}/bin/cc"
];
2018-10-17 16:56:57 +01:00
nativeBuildInputs = [ which pkgconfig docutils ];
2018-08-02 11:29:35 +01:00
buildInputs = [ freetype pango ];
2017-09-17 18:37:50 +01:00
meta = with stdenv.lib; {
homepage = http://moinejf.free.fr/;
license = licenses.gpl3;
2019-03-15 09:39:21 +00:00
description = "A command line program which converts ABC to music sheet in PostScript or SVG format";
platforms = platforms.unix;
2017-09-17 18:37:50 +01:00
maintainers = [ maintainers.dotlambda ];
};
}