monophony: 2.3.1 -> 2.4.0

This commit is contained in:
annalee 2023-12-04 03:32:24 +00:00
parent 0c6d8c7833
commit 1105fa7e13
No known key found for this signature in database

View File

@ -11,7 +11,7 @@
}:
python3Packages.buildPythonApplication rec {
pname = "monophony";
version = "2.3.1";
version = "2.4.0";
format = "other";
sourceRoot = "source/source";
@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec {
owner = "zehkira";
repo = "monophony";
rev = "v${version}";
hash = "sha256-dpRTHsujaIwzgr+qY5LC9xtXz40g3akdpEiHuxiilZM=";
hash = "sha256-BIaBysqkNfRk7N4dzyjnN+ha2WkppkwFDSj4AAcp9UI=";
};
pythonPath = with python3Packages; [
@ -34,18 +34,16 @@ python3Packages.buildPythonApplication rec {
wrapGAppsHook4
];
buildInputs =
[
libadwaita
# needed for gstreamer https
libsoup_3
glib-networking
]
++ (with gst_all_1; [
gst-plugins-base
gst-plugins-good
gstreamer
]);
buildInputs = [
libadwaita
# needed for gstreamer https
libsoup_3
glib-networking
] ++ (with gst_all_1; [
gst-plugins-base
gst-plugins-good
gstreamer
]);
installFlags = [ "prefix=$(out)" ];
@ -55,7 +53,7 @@ python3Packages.buildPythonApplication rec {
--prefix PYTHONPATH : "$program_PYTHONPATH"
--prefix PATH : "${lib.makeBinPath [yt-dlp]}"
# needed for gstreamer https
--prefix LD_LIBRARY_PATH : "${libsoup_3.out}/lib"
--prefix LD_LIBRARY_PATH : "${lib.getLib libsoup_3}/lib"
)
'';