rofi-mpd: init at 1.1.0

This commit is contained in:
Jake Stanger 2019-09-29 12:52:17 +01:00
parent f3641ba721
commit 499deedb86
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "rofi-mpd";
version = "1.1.0";
src = fetchFromGitHub {
owner = "JakeStanger";
repo = "Rofi_MPD";
rev = "v${version}";
sha256 = "0pdra1idgas3yl9z9v7b002igwg2c1mv0yw2ffb8rsbx88x4gbai";
};
propagatedBuildInputs = with python3Packages; [ mutagen mpd2 ];
# upstream doesn't contain a test suite
doCheck = false;
meta = with lib; {
description = "A rofi menu for interacting with MPD written in Python";
homepage = "https://github.com/JakeStanger/Rofi_MPD";
license = licenses.mit;
maintainers = with maintainers; [ jakestanger ];
platforms = platforms.all;
};
}

View File

@ -19517,6 +19517,8 @@ in
ncmpcpp = callPackage ../applications/audio/ncmpcpp { };
rofi-mpd = callPackage ../applications/audio/rofi-mpd { };
ympd = callPackage ../applications/audio/ympd { };
nload = callPackage ../applications/networking/nload { };