Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 48449d6e35b2
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7227ca7f588d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2019

  1. Revert "ncmpc: 0.35 -> 0.36"

    ncmpc 0.36 isn't compatible with mpd 0.20 which is the version packaged on
    the release-19.09 branch.
    
    See NixOS/nixpkgs#73000 (comment).
    
    This reverts commit 245f5ec.
    pacien committed Nov 16, 2019
    Copy the full SHA
    7d2b904 View commit details
  2. Merge pull request #73508 from pacien/19.09-revert-ncmpc-0.36

    [19.09] Revert "ncmpc: 0.35 -> 0.36"
    fpletz authored Nov 16, 2019
    Copy the full SHA
    7227ca7 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/audio/ncmpc/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/audio/ncmpc/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "ncmpc";
version = "0.36";
version = "0.35";

src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "ncmpc";
rev = "v${version}";
sha256 = "1ssmk1p43gjhcqi86sh6b7csqpwwpf3hs32cmnylv6pmbcwbs69h";
sha256 = "0hhc5snxy5fbg47ynz4b7fkmzdy974zxqr0cqc6kh15yvbr25ikh";
};

buildInputs = [ glib ncurses mpd_clientlib boost ];