Merge pull request #69877 from JakeStanger/rofi-mpd

rofi-mpd: init at 1.1.0
This commit is contained in:
Jon 2019-09-30 07:14:53 -07:00 committed by GitHub
commit 0e88a0e257
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -2847,6 +2847,12 @@
githubId = 820715;
name = "Jake Logemann";
};
jakestanger = {
email = "mail@jstanger.dev";
github = "JakeStanger";
githubId = 5057870;
name = "Jake Stanger";
};
jakewaksbaum = {
email = "jake.waksbaum@gmail.com";
github = "jbaum98";

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

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