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: f02a1293138a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7c41b7dee748
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 22, 2020

  1. spotify-tui: 0.17.1 -> 0.18.0

    marsam committed Apr 22, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jonringer Jonathan Ringer
    Copy the full SHA
    ebf8442 View commit details

Commits on Apr 23, 2020

  1. Merge pull request #85830 from marsam/update-spotify-tui

    spotify-tui: 0.17.1 -> 0.18.0
    marsam authored Apr 23, 2020
    Copy the full SHA
    7c41b7d View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/audio/spotify-tui/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/audio/spotify-tui/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
version = "0.17.1";
version = "0.18.0";

src = fetchFromGitHub {
owner = "Rigellute";
repo = "spotify-tui";
rev = "v${version}";
sha256 = "1gsddjinxmglm05hhphclax08d9pig1f0wjjs3bbcq096fydxgfs";
sha256 = "15icg332iyacdn4ydr4nivblayg4xkcnjh4f0sjnhj4q173v8fq2";
};

cargoSha256 = "1y398ypckk3gw1sfzf97xzwf5d5z3kxlcpn3bccmsfr59kvkf661";
cargoSha256 = "0rw8pj74k88rvcr18837g356lwsn2vdq384yma9df462xd2cw823";

nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optionals stdenv.isLinux [ python3 ];
buildInputs = [ openssl ]