mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
qmake,
|
|
qttools,
|
|
wrapQtAppsHook,
|
|
alsa-lib,
|
|
flac,
|
|
libjack2,
|
|
libogg,
|
|
libvorbis,
|
|
qtsvg,
|
|
qtwayland,
|
|
rtmidi,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.4.1";
|
|
pname = "polyphone";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davy7125";
|
|
repo = "polyphone";
|
|
rev = version;
|
|
hash = "sha256-43EswCgNJv11Ov+4vmj2vS/yJ2atyzkRmk/SoCKYD/0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
flac
|
|
libjack2
|
|
libogg
|
|
libvorbis
|
|
qtsvg
|
|
qtwayland
|
|
rtmidi
|
|
];
|
|
|
|
preConfigure = ''
|
|
cd ./sources/
|
|
'';
|
|
|
|
postConfigure = ''
|
|
# Work around https://github.com/NixOS/nixpkgs/issues/214765
|
|
substituteInPlace Makefile \
|
|
--replace-fail "$(dirname $QMAKE)/lrelease" "${lib.getBin qttools}/bin/lrelease"
|
|
'';
|
|
|
|
qmakeFlags = [
|
|
"DEFINES+=USE_LOCAL_STK"
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
|
|
description = "Soundfont editor for creating musical instruments";
|
|
mainProgram = "polyphone";
|
|
homepage = "https://www.polyphone-soundfonts.com/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
maxdamantus
|
|
orivej
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|