nixpkgs/pkgs/applications/audio/mousai/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.3 KiB
Nix
Raw Normal View History

2021-04-26 08:04:34 +00:00
{ lib
, python3
, fetchFromGitHub
2021-10-11 22:25:13 +00:00
, substituteAll
2021-04-26 08:04:34 +00:00
, appstream-glib
, desktop-file-utils
, gettext
, glib
, gobject-introspection
, gst_all_1
, gtk4
, libadwaita
2021-04-26 08:04:34 +00:00
, librsvg
, meson
, ninja
, pkg-config
2021-10-11 22:25:13 +00:00
, pulseaudio
2021-04-26 08:04:34 +00:00
, wrapGAppsHook
}:
python3.pkgs.buildPythonApplication rec {
pname = "mousai";
2021-10-11 22:25:13 +00:00
version = "0.6.6";
2021-04-26 08:04:34 +00:00
format = "other";
src = fetchFromGitHub {
owner = "SeaDve";
repo = "Mousai";
rev = "v${version}";
2021-10-11 22:25:13 +00:00
sha256 = "sha256-nCbFVFg+nVF8BOBfdzQVgdTRXR5UF18PJFC266yTFwg=";
2021-04-26 08:04:34 +00:00
};
2021-10-11 22:25:13 +00:00
patches = [
(substituteAll {
src = ./paths.patch;
pactl = "${lib.getBin pulseaudio}/bin/pactl";
})
];
2021-04-26 08:04:34 +00:00
postPatch = ''
patchShebangs build-aux/meson
'';
nativeBuildInputs = [
appstream-glib
desktop-file-utils
gettext
glib
gtk4
2021-04-26 08:04:34 +00:00
meson
ninja
pkg-config
wrapGAppsHook
];
buildInputs = [
gobject-introspection
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gtk4
libadwaita
2021-04-26 08:04:34 +00:00
librsvg
2021-10-11 22:25:13 +00:00
pulseaudio
2021-04-26 08:04:34 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
pygobject3
requests
];
meta = with lib; {
description = "Identify any songs in seconds";
homepage = "https://github.com/SeaDve/Mousai";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}