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
This commit is contained in:
R. RyanTM 2019-10-24 08:34:39 -07:00 committed by Renaud
parent 719313b2a2
commit a701093bd4

View File

@ -35,13 +35,13 @@
mkDerivation rec { mkDerivation rec {
pname = "strawberry"; pname = "strawberry";
version = "0.6.3"; version = "0.6.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jonaski"; owner = "jonaski";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "01j5jzzicy895kg9sjy46lbcm5kvf3642d3q5wwb2fyvyq1fbcv0"; sha256 = "1kqx0q99n1p5pm6skvqjihz11byhxdid1qw6gqp67dh2na62z1lm";
}; };
buildInputs = [ buildInputs = [
@ -89,9 +89,11 @@ mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Music player and music collection organizer"; 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 ]; 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.5
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }