nixpkgs/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 06:06:04 +00:00
{ lib
, stdenv
, fetchFromGitHub
, docutils
, pkg-config
, freetype
, pango
}:
2017-09-17 17:37:50 +00:00
stdenv.mkDerivation rec {
pname = "abcm2ps";
version = "8.14.14";
2017-09-17 17:37:50 +00:00
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${version}";
hash = "sha256-2BSbnziwlilYio9CF4MTlj0GVlkSpL8jeaqvLIBCeLQ=";
2017-09-17 17:37:50 +00:00
};
configureFlags = [
"--INSTALL=install"
];
2022-01-30 06:06:04 +00:00
nativeBuildInputs = [ docutils pkg-config ];
2018-08-02 10:29:35 +00:00
buildInputs = [ freetype pango ];
2017-09-17 17:37:50 +00:00
meta = with lib; {
homepage = "http://moinejf.free.fr/";
2021-07-23 22:11:04 +00:00
license = licenses.lgpl3Plus;
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 17:37:50 +00:00
maintainers = [ maintainers.dotlambda ];
};
}