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

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

57 lines
1.3 KiB
Nix
Raw Normal View History

2021-03-08 15:01:41 +00:00
{ lib, fetchFromGitHub
2023-03-04 23:32:48 +00:00
, pkg-config, meson ,ninja
2021-03-08 15:01:41 +00:00
, python3Packages
, gdk-pixbuf, glib, gobject-introspection, gtk3
, libnotify
2021-03-08 15:01:41 +00:00
, wrapGAppsHook }:
python3Packages.buildPythonApplication rec {
pname = "mpdevil";
2024-01-18 20:19:02 +00:00
version = "1.11.0";
2021-03-08 15:01:41 +00:00
src = fetchFromGitHub {
owner = "SoongNoonien";
repo = pname;
2024-01-18 20:19:02 +00:00
rev = "refs/tags/v${version}";
sha256 = "sha256-ooNZSsVtIeueqgj9hR9OZp08qm8gGokiq8IU3U/ZV5w=";
2021-03-08 15:01:41 +00:00
};
2023-03-04 23:32:48 +00:00
format = "other";
2021-03-08 15:01:41 +00:00
nativeBuildInputs = [
2023-03-04 23:32:48 +00:00
glib.dev gobject-introspection gtk3 pkg-config meson ninja wrapGAppsHook
2021-03-08 15:01:41 +00:00
];
buildInputs = [
gdk-pixbuf glib libnotify
2021-03-08 15:01:41 +00:00
];
propagatedBuildInputs = with python3Packages; [
beautifulsoup4 distutils-extra mpd2 notify-py pygobject3 requests
2021-03-08 15:01:41 +00:00
];
postInstall = ''
glib-compile-schemas $out/share/glib-2.0/schemas
'';
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
# Prevent double wrapping.
dontWrapGApps = true;
# Otherwise wrapGAppsHook do not pick up the dependencies correctly.
strictDeps = false;
# There aren't any checks.
doCheck = false;
meta = with lib; {
description = "A simple music browser for MPD";
homepage = "https://github.com/SoongNoonien/mpdevil";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ apfelkuchen6 ];
mainProgram = "mpdevil";
2021-03-08 15:01:41 +00:00
};
}