deadbeef: modernize, move to by-name/

This commit is contained in:
pancaek
2025-10-21 20:10:39 -07:00
parent a62102d5d2
commit c159537648
2 changed files with 6 additions and 10 deletions
@@ -62,18 +62,16 @@
let
inherit (lib) optionals;
version = "1.10.0";
in
clangStdenv.mkDerivation {
clangStdenv.mkDerivation (finalAttrs: {
pname = "deadbeef";
inherit version;
version = "1.10.0";
src = fetchFromGitHub {
owner = "DeaDBeeF-Player";
repo = "deadbeef";
fetchSubmodules = true;
rev = version;
tag = finalAttrs.version;
hash = "sha256-qa0ULmE15lV2vkyXPNW9kSISQZEANrjwJwykTiifk5Q=";
};
@@ -155,16 +153,16 @@ clangStdenv.mkDerivation {
enableParallelBuilding = true;
meta = with lib; {
meta = {
description = "Ultimate Music Player for GNU/Linux";
mainProgram = "deadbeef";
homepage = "http://deadbeef.sourceforge.net/";
downloadPage = "https://github.com/DeaDBeeF-Player/deadbeef";
license = licenses.gpl2;
license = lib.licenses.gpl2;
platforms = [
"x86_64-linux"
"i686-linux"
];
maintainers = [ ];
};
}
})
-2
View File
@@ -10900,8 +10900,6 @@ with pkgs;
inherit (darwin) autoSignDarwinBinariesHook;
};
deadbeef = callPackage ../applications/audio/deadbeef { };
deadbeefPlugins = {
headerbar-gtk3 = callPackage ../applications/audio/deadbeef/plugins/headerbar-gtk3.nix { };
lyricbar = callPackage ../applications/audio/deadbeef/plugins/lyricbar.nix { };