mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
63 lines
1.9 KiB
Nix
63 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, python311Packages, lilypond }:
|
|
|
|
python311Packages.buildPythonApplication rec {
|
|
pname = "frescobaldi";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wbsoft";
|
|
repo = "frescobaldi";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-Q6ruthNcpjLlYydUetkuTECiCIzu055bw40O8BPGq/A=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python311Packages; [
|
|
qpageview
|
|
lilypond
|
|
pygame
|
|
python-ly
|
|
sip4
|
|
pyqt5
|
|
poppler-qt5
|
|
pyqtwebengine
|
|
];
|
|
|
|
nativeBuildInputs = [ python311Packages.pyqtwebengine.wrapQtAppsHook ];
|
|
|
|
# Needed because source is fetched from git
|
|
preBuild = ''
|
|
make -C i18n
|
|
make -C linux
|
|
'';
|
|
|
|
# no tests in shipped with upstream
|
|
doCheck = false;
|
|
|
|
dontWrapQtApps = true;
|
|
makeWrapperArgs = [
|
|
"\${qtWrapperArgs[@]}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://frescobaldi.org/";
|
|
description = "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
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ sepi ];
|
|
platforms = platforms.all;
|
|
broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/frescobaldi.x86_64-darwin
|
|
mainProgram = "frescobaldi";
|
|
};
|
|
}
|