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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
744 B
Nix
Raw Normal View History

2022-01-30 07:06:04 +01:00
{ lib
, stdenv
, fetchFromGitHub
, docutils
, pkg-config
, freetype
, pango
}:
2017-09-17 19:37:50 +02:00
stdenv.mkDerivation rec {
pname = "abcm2ps";
2022-01-30 07:06:04 +01:00
version = "8.14.13";
2017-09-17 19:37:50 +02:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
2022-01-30 07:06:04 +01:00
hash = "sha256-31cEBtVn7GlNIsPkRiW0DyKA/giLeJ86EUZr8zjYy3s=";
2017-09-17 19:37:50 +02:00
};
configureFlags = [
"--INSTALL=install"
];
2022-01-30 07:06:04 +01:00
nativeBuildInputs = [ docutils pkg-config ];
2018-08-02 12:29:35 +02:00
buildInputs = [ freetype pango ];
2017-09-17 19:37:50 +02:00
meta = with lib; {
homepage = "http://moinejf.free.fr/";
2021-07-24 00:11:04 +02:00
license = licenses.lgpl3Plus;
2019-03-15 10:39:21 +01:00
description = "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 ];
};
}