159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, audacious-plugins
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, qtbase
|
|
, qtsvg
|
|
, qtwayland
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "audacious";
|
|
version = "4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "audacious-media-player";
|
|
repo = "audacious";
|
|
rev = "${pname}-${version}";
|
|
hash = "sha256-qAJztvNI3uGmQfECJJ7tJ/xLLgMU5OiW0O3ZSJhvt0k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtsvg
|
|
qtwayland
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dgtk=false"
|
|
"-Dbuildstamp=NixOS"
|
|
];
|
|
|
|
postInstall = lib.optionalString (audacious-plugins != null) ''
|
|
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
|
|
];
|
|
};
|
|
}
|