strawberry: 0.9.1 -> 0.9.2 (#117889)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by ppenguin Sandro and committed by GitHub e2b46c7b 4b872b6e

+8 -5
+8 -5
pkgs/applications/audio/strawberry/default.nix
··· 35 36 mkDerivation rec { 37 pname = "strawberry"; 38 - version = "0.9.1"; 39 40 src = fetchFromGitHub { 41 owner = "jonaski"; 42 repo = pname; 43 rev = version; 44 - sha256 = "sha256-1aXHMvjLK5WiE0mut/a3ynuMfNHgPbUzAZdmaVJBDXQ="; 45 }; 46 47 buildInputs = [ ··· 67 libselinux 68 libsepol 69 p11-kit 70 - util-linux 71 ] 72 ++ lib.optionals withGstreamer (with gst_all_1; [ 73 gstreamer ··· 77 ]) 78 ++ lib.optional withVlc libvlc; 79 80 - nativeBuildInputs = [ cmake ninja pkg-config qttools ]; 81 82 cmakeFlags = [ 83 "-DUSE_SYSTEM_TAGLIB=ON" ··· 91 description = "Music player and music collection organizer"; 92 homepage = "https://www.strawberrymusicplayer.org/"; 93 changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog"; 94 - license = licenses.gpl3; 95 maintainers = with maintainers; [ peterhoeg ]; 96 # upstream says darwin should work but they lack maintainers as of 0.6.6 97 platforms = platforms.linux;
··· 35 36 mkDerivation rec { 37 pname = "strawberry"; 38 + version = "0.9.2"; 39 40 src = fetchFromGitHub { 41 owner = "jonaski"; 42 repo = pname; 43 rev = version; 44 + sha256 = "sha256:0d9asg21j9ai23sb35cimws8bd8fsnpha777rgscraa7i09q0rx2"; 45 }; 46 47 buildInputs = [ ··· 67 libselinux 68 libsepol 69 p11-kit 70 ] 71 ++ lib.optionals withGstreamer (with gst_all_1; [ 72 gstreamer ··· 76 ]) 77 ++ lib.optional withVlc libvlc; 78 79 + nativeBuildInputs = [ 80 + cmake ninja pkg-config qttools 81 + ] ++ lib.optionals stdenv.isLinux [ 82 + util-linux 83 + ]; 84 85 cmakeFlags = [ 86 "-DUSE_SYSTEM_TAGLIB=ON" ··· 94 description = "Music player and music collection organizer"; 95 homepage = "https://www.strawberrymusicplayer.org/"; 96 changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog"; 97 + license = licenses.gpl3Only; 98 maintainers = with maintainers; [ peterhoeg ]; 99 # upstream says darwin should work but they lack maintainers as of 0.6.6 100 platforms = platforms.linux;