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: 3757f29dd5e4
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: 6b68f17588ea
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 2, 2019

  1. strawberry: 0.6.3 -> 0.6.5 (#71878)

    * strawberry: 0.6.3 -> 0.6.5
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/strawberry/versions
    
    * strawberry: add meta.homepage and meta.changelog
    
    (cherry picked from commit a701093)
    r-ryantm authored and lsix committed Dec 2, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    27f0c19 View commit details
  2. strawberry: 0.6.5 -> 0.6.6

    (cherry picked from commit 06d842e)
    r-ryantm authored and lsix committed Dec 2, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    bc5070b View commit details
  3. strawberry: 0.6.6 -> 0.6.7

    (cherry picked from commit adc9ccd)
    lsix committed Dec 2, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    6b68f17 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/applications/audio/strawberry/default.nix
10 changes: 6 additions & 4 deletions pkgs/applications/audio/strawberry/default.nix
Original file line number Diff line number Diff line change
@@ -35,13 +35,13 @@

mkDerivation rec {
pname = "strawberry";
version = "0.6.3";
version = "0.6.7";

src = fetchFromGitHub {
owner = "jonaski";
repo = pname;
rev = version;
sha256 = "01j5jzzicy895kg9sjy46lbcm5kvf3642d3q5wwb2fyvyq1fbcv0";
sha256 = "14bw4hmysrbl4havz03s3wl8bv76380wddf5zzrjvfjjpwn333r6";
};

buildInputs = [
@@ -89,9 +89,11 @@ mkDerivation rec {

meta = with lib; {
description = "Music player and music collection organizer";
license = licenses.gpl2;
homepage = "https://www.strawberrymusicplayer.org/";
changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
# upstream says darwin should work but they lack maintainers as of 0.6.3
# upstream says darwin should work but they lack maintainers as of 0.6.6
platforms = platforms.linux;
};
}