Skip to content

Commit

Permalink
fooyin: 0.7.2 -> 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zendo authored and peterhoeg committed Oct 28, 2024
1 parent 4e292f2 commit 800ffc5
Showing 1 changed file with 38 additions and 22 deletions.
60 changes: 38 additions & 22 deletions pkgs/by-name/fo/fooyin/package.nix
Original file line number Diff line number Diff line change
@@ -1,38 +1,52 @@
{ stdenv
, lib
, fetchFromGitHub
, cmake
, pkg-config
, alsa-lib
, ffmpeg
, kdePackages
, kdsingleapplication
, pipewire
, taglib
, libvgm
{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
alsa-lib,
ffmpeg,
kdePackages,
kdsingleapplication,
pipewire,
taglib,
libvgm,
libsndfile,
libarchive,
libopenmpt,
game-music-emu,
SDL2,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "fooyin";
version = "0.7.2";
version = "0.8.1";

src = fetchFromGitHub {
owner = "ludouzi";
repo = "fooyin";
rev = "v" + finalAttrs.version;
hash = "sha256-9tNd0TDTxlm6jV2kkZGZbi8tZMj13jbp3+aKXOkNtIw=";
hash = "sha256-pkzBuJkZs76m7I/9FPt5GxGa8v2CDNR8QAHaIAuKN4w=";
};

buildInputs = [
alsa-lib
ffmpeg
kdsingleapplication
pipewire
kdePackages.qcoro
kdePackages.qtbase
kdePackages.qtsvg
kdePackages.qtwayland
taglib
ffmpeg
kdsingleapplication
# output plugins
alsa-lib
pipewire
SDL2
# input plugins
libvgm
libsndfile
libarchive
libopenmpt
game-music-emu
];

nativeBuildInputs = [
Expand All @@ -51,11 +65,13 @@ stdenv.mkDerivation (finalAttrs: {

env.LANG = "C.UTF-8";

meta = with lib; {
meta = {
description = "Customisable music player";
homepage = "https://www.fooyin.org/";
downloadPage = "https://github.com/fooyin/fooyin";
mainProgram = "fooyin";
license = licenses.gpl3Only;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ peterhoeg ];
platforms = lib.platforms.linux;
};
})

0 comments on commit 800ffc5

Please sign in to comment.