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

34 lines
808 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 {
name = "abcm2ps-${version}";
version = "8.14.5";
2017-09-17 18:37:50 +01:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
sha256 = "1i6db49khqy8bqg21cn90b1fvyw8mh1asdswzssr6dr2g8bhdwmq";
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 ];
};
}