mpd-sima: migrate to by-name (#467652)

This commit is contained in:
Aleksana
2025-12-04 05:45:37 +00:00
committed by GitHub
2 changed files with 9 additions and 10 deletions
@@ -1,13 +1,12 @@
{
lib,
buildPythonApplication,
fetchFromGitLab,
python-musicpd,
requests,
python3Packages,
sphinxHook,
nix-update-script,
}:
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "mpd-sima";
version = "0.18.2";
@@ -30,7 +29,7 @@ buildPythonApplication rec {
sphinxBuilders = [ "man" ];
propagatedBuildInputs = [
dependencies = with python3Packages; [
requests
python-musicpd
];
@@ -41,11 +40,13 @@ buildPythonApplication rec {
export HOME="$(mktemp -d)"
'';
meta = with lib; {
passthru.updateScript = nix-update-script { };
meta = {
description = "Autoqueuing mpd client";
homepage = "https://kaliko.me/mpd-sima/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ apfelkuchen6 ];
mainProgram = "mpd-sima";
};
-2
View File
@@ -2144,8 +2144,6 @@ with pkgs;
inherit (gst_all_1) gstreamer gst-plugins-base;
};
mpd-sima = python3Packages.callPackage ../tools/audio/mpd-sima { };
nltk-data = recurseIntoAttrs (callPackage ../tools/text/nltk-data { });
seabios-coreboot = seabios.override { ___build-type = "coreboot"; };