Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6803c951a7d5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 865b4620ed5e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 20, 2020

  1. rofi-mpd: 1.1.0 -> 2.0.0

    JakeStanger authored and teto committed Jan 20, 2020
    Copy the full SHA
    865b462 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/audio/rofi-mpd/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/audio/rofi-mpd/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

python3Packages.buildPythonApplication rec {
pname = "rofi-mpd";
version = "1.1.0";
version = "2.0.0";

src = fetchFromGitHub {
owner = "JakeStanger";
repo = "Rofi_MPD";
rev = "v${version}";
sha256 = "0pdra1idgas3yl9z9v7b002igwg2c1mv0yw2ffb8rsbx88x4gbai";
sha256 = "0qn2jwvil5csp423r523wjbgwpb781li2bgaz1mby3prscrlz8mg";
};

propagatedBuildInputs = with python3Packages; [ mutagen mpd2 ];
propagatedBuildInputs = with python3Packages; [ mutagen mpd2 toml appdirs ];

# upstream doesn't contain a test suite
doCheck = false;