mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
New package: frescobaldi
This commit is contained in:
parent
5304a065ed
commit
027de5a0d6
34
pkgs/misc/frescobaldi/default.nix
Normal file
34
pkgs/misc/frescobaldi/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
11
pkgs/misc/frescobaldi/python-path.patch
Normal file
11
pkgs/misc/frescobaldi/python-path.patch
Normal file
@ -0,0 +1,11 @@
|
||||
diff -u frescobaldi-2.0.16.old/frescobaldi frescobaldi-2.0.16/frescobaldi
|
||||
--- frescobaldi-2.0.16/frescobaldi 2014-10-24 11:29:28.705687224 +0200
|
||||
+++ frescobaldi-2.0.16.new/frescobaldi 2014-10-24 11:31:08.086444793 +0200
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/python
|
||||
+#!/usr/bin/env python
|
||||
import sys
|
||||
import frescobaldi_app.main
|
||||
import app
|
||||
Common subdirectories: frescobaldi-2.0.16/frescobaldi_app and frescobaldi-2.0.16.new/frescobaldi_app
|
||||
Common subdirectories: frescobaldi-2.0.16/macosx and frescobaldi-2.0.16.new/macosx
|
13
pkgs/misc/frescobaldi/setup.cfg.patch
Normal file
13
pkgs/misc/frescobaldi/setup.cfg.patch
Normal file
@ -0,0 +1,13 @@
|
||||
Common subdirectories: frescobaldi-2.0.16.old/build and frescobaldi-2.0.16/build
|
||||
Common subdirectories: frescobaldi-2.0.16.old/frescobaldi_app and frescobaldi-2.0.16/frescobaldi_app
|
||||
Common subdirectories: frescobaldi-2.0.16.old/macosx and frescobaldi-2.0.16/macosx
|
||||
diff -u frescobaldi-2.0.16.old/setup.cfg frescobaldi-2.0.16/setup.cfg
|
||||
--- frescobaldi-2.0.16.old/setup.cfg 2012-02-05 07:08:24.000000000 +0100
|
||||
+++ frescobaldi-2.0.16/setup.cfg 2014-10-24 15:08:48.141335620 +0200
|
||||
@@ -1,6 +1,2 @@
|
||||
-[bdist_wininst]
|
||||
-bitmap=frescobaldi-wininst.bmp
|
||||
-install-script=frescobaldi-wininst.py
|
||||
-
|
||||
[sdist]
|
||||
force-manifest=1
|
@ -1177,6 +1177,8 @@ let
|
||||
|
||||
freetds = callPackage ../development/libraries/freetds { };
|
||||
|
||||
frescobaldi = callPackage ../misc/frescobaldi {};
|
||||
|
||||
ftgl = callPackage ../development/libraries/ftgl { };
|
||||
|
||||
ftgl212 = callPackage ../development/libraries/ftgl/2.1.2.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user