nixpkgs/pkgs/misc/frescobaldi/default.nix

56 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2020-01-03 17:24:59 +00:00
{ lib, buildPythonApplication, fetchFromGitHub, python3Packages, pyqtwebengine, lilypond }:
2014-10-24 13:35:30 +00:00
2020-01-03 17:24:59 +00:00
buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "frescobaldi";
2021-04-26 16:09:18 +00:00
version = "3.1.3";
2014-10-24 13:35:30 +00:00
src = fetchFromGitHub {
owner = "wbsoft";
repo = "frescobaldi";
rev = "v${version}";
2021-04-26 16:09:18 +00:00
sha256 = "1p8f4vn2dpqndw1dylmg7wms6vi69zcfj544c908s4r8rrmbycyf";
2014-10-24 13:35:30 +00:00
};
propagatedBuildInputs = with python3Packages; [
lilypond pygame python-ly sip_4
2020-01-03 17:24:59 +00:00
pyqt5 poppler-qt5
pyqtwebengine
];
2014-10-24 13:35:30 +00:00
2020-01-03 17:24:59 +00:00
nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ];
2021-04-26 16:09:18 +00:00
# Needed because source is fetched from git
preBuild = ''
make -C i18n
make -C linux
'';
# no tests in shipped with upstream
doCheck = false;
2014-10-24 13:35:30 +00:00
2020-01-03 17:24:59 +00:00
dontWrapQtApps = true;
makeWrapperArgs = [
"\${qtWrapperArgs[@]}"
];
meta = with lib; {
homepage = "https://frescobaldi.org/";
description = "A LilyPond sheet music text editor";
2014-10-24 13:35:30 +00:00
longDescription = ''
Powerful text editor with syntax highlighting and automatic completion,
Music view with advanced Point & Click, Midi player to proof-listen
LilyPond-generated MIDI files, Midi capturing to enter music,
Powerful Score Wizard to quickly setup a music score, Snippet Manager
to store and apply text snippets, templates or scripts, Use multiple
versions of LilyPond, automatically selects the correct version, Built-in
LilyPond documentation browser and built-in User Guide, Smart
layout-control functions like coloring specific objects in the PDF,
MusicXML import, Modern user iterface with configurable colors,
fonts and keyboard shortcuts
2014-10-24 13:35:30 +00:00
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sepi ];
platforms = platforms.all;
2014-10-24 13:35:30 +00:00
};
}