strawberry: 0.9.1 -> 0.9.2 (#117889)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
ppenguin 2021-03-30 17:17:12 +02:00 committed by GitHub
parent 4b872b6efd
commit e2b46c7ba6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,13 +35,13 @@
mkDerivation rec {
pname = "strawberry";
version = "0.9.1";
version = "0.9.2";
src = fetchFromGitHub {
owner = "jonaski";
repo = pname;
rev = version;
sha256 = "sha256-1aXHMvjLK5WiE0mut/a3ynuMfNHgPbUzAZdmaVJBDXQ=";
sha256 = "sha256:0d9asg21j9ai23sb35cimws8bd8fsnpha777rgscraa7i09q0rx2";
};
buildInputs = [
@ -67,7 +67,6 @@ mkDerivation rec {
libselinux
libsepol
p11-kit
util-linux
]
++ lib.optionals withGstreamer (with gst_all_1; [
gstreamer
@ -77,7 +76,11 @@ mkDerivation rec {
])
++ lib.optional withVlc libvlc;
nativeBuildInputs = [ cmake ninja pkg-config qttools ];
nativeBuildInputs = [
cmake ninja pkg-config qttools
] ++ lib.optionals stdenv.isLinux [
util-linux
];
cmakeFlags = [
"-DUSE_SYSTEM_TAGLIB=ON"
@ -91,7 +94,7 @@ mkDerivation rec {
description = "Music player and music collection organizer";
homepage = "https://www.strawberrymusicplayer.org/";
changelog = "https://raw.githubusercontent.com/jonaski/strawberry/${version}/Changelog";
license = licenses.gpl3;
license = licenses.gpl3Only;
maintainers = with maintainers; [ peterhoeg ];
# upstream says darwin should work but they lack maintainers as of 0.6.6
platforms = platforms.linux;