nixpkgs/pkgs/tools/audio/abcm2ps/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

46 lines
943 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, docutils
, pkg-config
, freetype
, pango
, testers
}:
stdenv.mkDerivation (finalAttrs: {
pname = "abcm2ps";
version = "8.14.15";
src = fetchFromGitHub {
owner = "leesavide";
repo = "abcm2ps";
rev = "v${finalAttrs.version}";
hash = "sha256-0ZSMKARX16/33sIWR8LOVOFblI/Q+iZgnfVq/xqRMnI=";
};
configureFlags = [
"--INSTALL=install"
];
nativeBuildInputs = [ docutils pkg-config ];
buildInputs = [ freetype pango ];
passthru.tests = {
version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "abcm2ps -V";
};
};
meta = with lib; {
homepage = "http://moinejf.free.fr/";
license = licenses.lgpl3Plus;
description = "Command line program which converts ABC to music sheet in PostScript or SVG format";
platforms = platforms.unix;
maintainers = [ maintainers.dotlambda ];
mainProgram = "abcm2ps";
};
})