mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
audacious-plugins,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
qt6,
|
|
withPlugins ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "audacious";
|
|
version = "4.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "audacious-media-player";
|
|
repo = "audacious";
|
|
rev = "${pname}-${version}";
|
|
hash = "sha256-Vh39uY15Pj2TbPk8gU55YykhFf5ytSUxN2gJ0VlC3tQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6.qtbase
|
|
qt6.qtsvg
|
|
qt6.qtwayland
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dgtk=false"
|
|
"-Dbuildstamp=NixOS"
|
|
];
|
|
|
|
postInstall = lib.optionalString withPlugins ''
|
|
ln -s ${audacious-plugins}/lib/audacious $out/lib
|
|
ln -s ${audacious-plugins}/share/audacious/Skins $out/share/audacious/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Lightweight and versatile audio player";
|
|
homepage = "https://audacious-media-player.org";
|
|
downloadPage = "https://github.com/audacious-media-player/audacious";
|
|
mainProgram = "audacious";
|
|
maintainers = with lib.maintainers; [
|
|
ramkromberg
|
|
ttuegel
|
|
thiagokokada
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
license = with lib.licenses; [
|
|
bsd2
|
|
bsd3 # https://github.com/audacious-media-player/audacious/blob/master/COPYING
|
|
gpl2
|
|
gpl3
|
|
lgpl2Plus # http://redmine.audacious-media-player.org/issues/46
|
|
];
|
|
};
|
|
}
|