mousai: init at 0.3.1 (#120552)
This commit is contained in:
parent
cdddbf59ea
commit
0e391039ed
69
pkgs/applications/audio/mousai/default.nix
Normal file
69
pkgs/applications/audio/mousai/default.nix
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{ lib
|
||||||
|
, python3
|
||||||
|
, fetchFromGitHub
|
||||||
|
, appstream-glib
|
||||||
|
, desktop-file-utils
|
||||||
|
, gettext
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, gst_all_1
|
||||||
|
, gtk3
|
||||||
|
, libhandy
|
||||||
|
, librsvg
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "mousai";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
format = "other";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "SeaDve";
|
||||||
|
repo = "Mousai";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0x57dci0prhlj79h74yh79cazn48rn0bckz5j3z4njk4fwc3fvfx";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs build-aux/meson
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
appstream-glib
|
||||||
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gobject-introspection
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gst_all_1.gst-plugins-good
|
||||||
|
gtk3
|
||||||
|
libhandy
|
||||||
|
librsvg
|
||||||
|
];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -24657,6 +24657,8 @@ in
|
|||||||
|
|
||||||
motif = callPackage ../development/libraries/motif { };
|
motif = callPackage ../development/libraries/motif { };
|
||||||
|
|
||||||
|
mousai = callPackage ../applications/audio/mousai { };
|
||||||
|
|
||||||
mozjpeg = callPackage ../applications/graphics/mozjpeg { };
|
mozjpeg = callPackage ../applications/graphics/mozjpeg { };
|
||||||
|
|
||||||
easytag = callPackage ../applications/audio/easytag { };
|
easytag = callPackage ../applications/audio/easytag { };
|
||||||
|
Loading…
Reference in New Issue
Block a user