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

38 lines
847 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}";
2018-08-02 12:29:35 +02:00
version = "8.13.24";
2017-09-17 19:37:50 +02:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
2018-08-02 12:29:35 +02:00
sha256 = "0xb0gdxbagy6bzrh61s667svab43r06d6yi20gw52dh022mj99ag";
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"
];
buildFlags = [
"CC=${stdenv.cc}/bin/cc"
];
2018-08-02 12:29:35 +02:00
nativeBuildInputs = [ which pkgconfig ];
buildInputs = [ freetype pango ];
2017-09-17 19:37:50 +02:00
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 19:37:50 +02:00
maintainers = [ maintainers.dotlambda ];
};
}