mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
116 lines
2.9 KiB
Nix
116 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
pkg-config,
|
|
desktopToDarwinBundle,
|
|
xorg,
|
|
wayland,
|
|
wayland-protocols,
|
|
libxkbcommon,
|
|
libglvnd,
|
|
mpv-unwrapped,
|
|
darwin,
|
|
waylandSupport ? false,
|
|
}:
|
|
|
|
assert waylandSupport -> stdenv.hostPlatform.isLinux;
|
|
|
|
buildGoModule rec {
|
|
pname = "supersonic" + lib.optionalString waylandSupport "-wayland";
|
|
version = "0.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dweymouth";
|
|
repo = "supersonic";
|
|
rev = "v${version}";
|
|
hash = "sha256-hJLooKH5jketvPTfTtkNBQL1F9lzBEhDZuUXZRFEcWo=";
|
|
};
|
|
|
|
vendorHash = "sha256-wT1WvwUUAnMIKa+RlRDD2QGJpZMtoecQCxSJekM6PdM=";
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
copyDesktopItems
|
|
pkg-config
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
desktopToDarwinBundle
|
|
];
|
|
|
|
# go-glfw doesn't support both X11 and Wayland in single build
|
|
tags = lib.optionals waylandSupport [ "wayland" ];
|
|
|
|
buildInputs =
|
|
[
|
|
libglvnd
|
|
mpv-unwrapped
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
xorg.libXxf86vm
|
|
xorg.libX11
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && !waylandSupport) [
|
|
xorg.libXrandr
|
|
xorg.libXinerama
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
xorg.libXext
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && waylandSupport) [
|
|
wayland
|
|
wayland-protocols
|
|
libxkbcommon
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk_11_0.frameworks.Cocoa
|
|
darwin.apple_sdk_11_0.frameworks.Kernel
|
|
darwin.apple_sdk_11_0.frameworks.OpenGL
|
|
darwin.apple_sdk_11_0.frameworks.UserNotifications
|
|
darwin.apple_sdk_11_0.frameworks.MediaPlayer
|
|
];
|
|
|
|
postInstall =
|
|
''
|
|
for dimension in 128 256 512;do
|
|
dimensions=''${dimension}x''${dimension}
|
|
mkdir -p $out/share/icons/hicolor/$dimensions/apps
|
|
cp res/appicon-$dimension.png $out/share/icons/hicolor/$dimensions/apps/${meta.mainProgram}.png
|
|
done
|
|
''
|
|
+ lib.optionalString waylandSupport ''
|
|
mv $out/bin/supersonic $out/bin/${meta.mainProgram}
|
|
'';
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = meta.mainProgram;
|
|
exec = meta.mainProgram;
|
|
icon = meta.mainProgram;
|
|
desktopName = "Supersonic" + lib.optionalString waylandSupport " (Wayland)";
|
|
genericName = "Subsonic Client";
|
|
comment = meta.description;
|
|
type = "Application";
|
|
categories = [
|
|
"Audio"
|
|
"AudioVideo"
|
|
];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
mainProgram = "supersonic" + lib.optionalString waylandSupport "-wayland";
|
|
description = "A lightweight cross-platform desktop client for Subsonic music servers";
|
|
homepage = "https://github.com/dweymouth/supersonic";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
zane
|
|
sochotnicky
|
|
];
|
|
};
|
|
}
|