summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/frescobaldi/default.nix
diff options
context:
space:
mode:
authorRaffael Mancini <raffael@mancini.lu>2014-10-24 15:35:30 +0200
committerRaffael Mancini <raffael@mancini.lu>2014-10-25 18:07:42 +0200
commit027de5a0d631b7c2dddb6b3c8414c91a1267cd1c (patch)
tree93db0ffb3e1beefb29bc5cf516d31ac2ccc356b4 /pkgs/misc/frescobaldi/default.nix
parent5304a065ed1edda0b766d12c3ea80ab7c671902d (diff)
New package: frescobaldi
Diffstat (limited to 'pkgs/misc/frescobaldi/default.nix')
-rw-r--r--pkgs/misc/frescobaldi/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/misc/frescobaldi/default.nix b/pkgs/misc/frescobaldi/default.nix
new file mode 100644
index 000000000000..558420043645
--- /dev/null
+++ b/pkgs/misc/frescobaldi/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, pythonPackages, lilypond, pyqt4 }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "frescobaldi-${version}";
+ version = "2.0.16";
+
+ src = fetchurl {
+ url = "https://github.com/wbsoft/frescobaldi/releases/download/v2.0.16/${name}.tar.gz";
+ sha256 = "12pabvq5b2lq84q3kx8lh02zh6ali6v4wnin2k2ycnm45mk9ms6q";
+ };
+
+ propagatedBuildInputs = with pythonPackages; [ lilypond
+ pyqt4 poppler-qt4 ];
+
+ patches = [ ./setup.cfg.patch ./python-path.patch ];
+
+ meta = {
+ 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
+ '';
+ platforms = stdenv.lib.platforms.all;
+ };
+}