2019-09-28 16:50:30 +01:00
|
|
|
{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
|
|
|
|
|
|
|
|
let
|
|
|
|
py = python3Packages;
|
|
|
|
in py.buildPythonApplication rec {
|
|
|
|
pname = "friture";
|
2021-09-30 14:05:33 +01:00
|
|
|
version = "0.48";
|
2019-09-28 16:50:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tlecomte";
|
friture: 0.36 -> 0.37 (#71608)
* friture: 0.36 -> 0.37
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/friture/versions
* friture: restrict to Linux platforms
Fails on Darwin with:
Traceback (most recent call last):
File "nix_run_setup", line 8, in <module>
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
File "setup.py", line 13, in <module>
import sounddevice # to find the libportaudio.dylib path
File "/nix/store/2sr2xabfdkcijzkwg5ic99lprwd6slij-python3.7-sounddevice-0.3.13/lib/python3.7/site-packages/sounddevice.py", line 61, in <module>
_lib = _ffi.dlopen('/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2')
OSError: cannot load library '/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2': dlopen(/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2, 2): image not found
2019-10-22 15:49:14 +01:00
|
|
|
repo = pname;
|
2021-08-18 11:00:51 +01:00
|
|
|
rev = "v${version}";
|
2021-09-30 14:05:33 +01:00
|
|
|
sha256 = "sha256-oOH58jD49xAeSuP+l6tYUpwkYsnfeSGTt8x4DFzTY6g=";
|
2019-09-28 16:50:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
|
|
|
|
[ wrapQtAppsHook ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with py; [
|
|
|
|
sounddevice
|
|
|
|
pyopengl
|
2020-07-20 17:09:40 +01:00
|
|
|
pyopengl-accelerate
|
2019-09-28 16:50:30 +01:00
|
|
|
docutils
|
|
|
|
numpy
|
|
|
|
pyqt5
|
|
|
|
appdirs
|
|
|
|
pyrr
|
2020-07-20 17:09:40 +01:00
|
|
|
rtmixer
|
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./unlock_constraints.patch
|
2019-09-28 16:50:30 +01:00
|
|
|
];
|
|
|
|
|
2020-10-08 13:23:06 +01:00
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
2019-09-28 16:50:30 +01:00
|
|
|
'';
|
|
|
|
|
2021-09-08 12:45:52 +01:00
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace $out/share/applications/friture.desktop --replace usr/bin/friture friture
|
|
|
|
|
|
|
|
for size in 16 32 128 256 512
|
|
|
|
do
|
|
|
|
mkdir -p $out/share/icons/hicolor/$size\x$size
|
|
|
|
cp $src/resources/images/friture.iconset/icon_$size\x$size.png $out/share/icons/hicolor/$size\x$size/friture.png
|
|
|
|
done
|
|
|
|
mkdir -p $out/share/icons/hicolor/scalable/apps/
|
|
|
|
cp $src/resources/images-src/window-icon.svg $out/share/icons/hicolor/scalable/apps/friture.svg
|
|
|
|
'';
|
|
|
|
|
2019-09-28 16:50:30 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A real-time audio analyzer";
|
2021-07-31 18:01:50 +01:00
|
|
|
homepage = "https://friture.org/";
|
2019-09-28 16:50:30 +01:00
|
|
|
license = licenses.gpl3;
|
friture: 0.36 -> 0.37 (#71608)
* friture: 0.36 -> 0.37
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/friture/versions
* friture: restrict to Linux platforms
Fails on Darwin with:
Traceback (most recent call last):
File "nix_run_setup", line 8, in <module>
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
File "setup.py", line 13, in <module>
import sounddevice # to find the libportaudio.dylib path
File "/nix/store/2sr2xabfdkcijzkwg5ic99lprwd6slij-python3.7-sounddevice-0.3.13/lib/python3.7/site-packages/sounddevice.py", line 61, in <module>
_lib = _ffi.dlopen('/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2')
OSError: cannot load library '/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2': dlopen(/nix/store/gzy8haziv610wbalnllcjpf3gd9f5619-portaudio-190600-20161030/lib/libportaudio.so.2, 2): image not found
2019-10-22 15:49:14 +01:00
|
|
|
platforms = platforms.linux; # fails on Darwin
|
2021-09-30 14:07:55 +01:00
|
|
|
maintainers = with maintainers; [ laikq alyaeanyx ];
|
2019-09-28 16:50:30 +01:00
|
|
|
};
|
|
|
|
}
|