nixpkgs/pkgs/misc/frescobaldi/default.nix

38 lines
1.4 KiB
Nix
Raw Normal View History

2016-08-14 10:37:20 +00:00
{ stdenv, fetchurl, pythonPackages, lilypond}:
2014-10-24 13:35:30 +00:00
pythonPackages.buildPythonApplication rec {
2014-10-24 13:35:30 +00:00
name = "frescobaldi-${version}";
version = "2.0.16";
src = fetchurl {
url = "https://github.com/wbsoft/frescobaldi/releases/download/"
+ "v2.0.16/${name}.tar.gz";
2014-10-24 13:35:30 +00:00
sha256 = "12pabvq5b2lq84q3kx8lh02zh6ali6v4wnin2k2ycnm45mk9ms6q";
};
propagatedBuildInputs = with pythonPackages; [ lilypond
pyqt4 poppler-qt4 pygame ];
2014-10-24 13:35:30 +00:00
patches = [ ./setup.cfg.patch ./python-path.patch ];
meta = with stdenv.lib; {
2014-10-24 13:35:30 +00:00
homepage = http://frescobaldi.org/;
description = ''Frescobaldi is a LilyPond sheet music text editor'';
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 = [ maintainers.sepi ];
platforms = platforms.all;
2014-10-24 13:35:30 +00:00
};
}