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