nixpkgs/pkgs/tools/audio/abcm2ps/default.nix

31 lines
735 B
Nix
Raw Normal View History

2017-09-17 19:37:50 +02:00
{ stdenv, fetchFromGitHub, pkgconfig, which, freetype, pango }:
stdenv.mkDerivation rec {
name = "abcm2ps-${version}";
2017-11-21 21:51:59 +01:00
version = "8.13.17";
2017-09-17 19:37:50 +02:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
2017-11-21 21:51:59 +01:00
sha256 = "1niafqn3kzd3fpx2c7m0by8il52ird2hbhvr7l03l290vlpjw6zc";
2017-09-17 19:37:50 +02:00
};
2017-11-13 01:38:19 +01:00
prePatch = ''
2017-09-17 19:37:50 +02:00
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 ];
};
}