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

36 lines
819 B
Nix
Raw Normal View History

2017-09-17 18:37:50 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, which, freetype, pango }:
stdenv.mkDerivation rec {
name = "abcm2ps-${version}";
2018-06-29 11:48:50 +01:00
version = "8.13.23";
2017-09-17 18:37:50 +01:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
2018-06-29 11:48:50 +01:00
sha256 = "00bc4vsdvnyznfwcrkij02n2736nsbjlrh0rng96zv00p4abv4ad";
2017-09-17 18:37:50 +01:00
};
2017-11-13 00:38:19 +00:00
prePatch = ''
2017-09-17 18:37:50 +01:00
chmod +x configure
'';
configureFlags = [
"--INSTALL=install"
];
buildFlags = [
"CC=${stdenv.cc}/bin/cc"
];
2017-09-17 18:37:50 +01:00
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";
platforms = platforms.unix;
2017-09-17 18:37:50 +01:00
maintainers = [ maintainers.dotlambda ];
};
}