wiliwili: init at 1.4.1
This commit is contained in:
parent
a1ecdd6b1a
commit
abaedd05fc
76
pkgs/by-name/wi/wiliwili/package.nix
Normal file
76
pkgs/by-name/wi/wiliwili/package.nix
Normal file
@ -0,0 +1,76 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
pkg-config,
|
||||
wayland-scanner,
|
||||
mpv-unwrapped,
|
||||
openssl,
|
||||
curl,
|
||||
libxkbcommon,
|
||||
dbus,
|
||||
libffi,
|
||||
wayland,
|
||||
egl-wayland,
|
||||
xorg,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "wiliwili";
|
||||
version = "1.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xfangfang";
|
||||
repo = "wiliwili";
|
||||
rev = "v${finalAttrs.version}";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-Fl8YV7yBW9dmcpcHCDVvkAzICTopNb4zKziDkR6NEwU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
] ++ lib.optionals stdenv.isLinux [
|
||||
wayland-scanner
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
mpv-unwrapped
|
||||
openssl
|
||||
curl
|
||||
libxkbcommon
|
||||
dbus
|
||||
] ++ lib.optionals stdenv.isLinux [
|
||||
libffi # needed for wayland
|
||||
wayland
|
||||
egl-wayland
|
||||
xorg.libX11
|
||||
xorg.libXrandr
|
||||
xorg.libXinerama
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
(lib.cmakeBool "PLATFORM_DESKTOP" true)
|
||||
(lib.cmakeBool "INSTALL" true)
|
||||
(lib.cmakeBool "GLFW_BUILD_WAYLAND" stdenv.isLinux)
|
||||
(lib.cmakeBool "GLFW_BUILD_X11" stdenv.isLinux)
|
||||
# Otherwise cpr cmake will try to download zlib
|
||||
(lib.cmakeBool "CPR_FORCE_USE_SYSTEM_CURL" true)
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Third-party Bilibili client with a switch-like UI";
|
||||
homepage = "https://xfangfang.github.io/wiliwili";
|
||||
# https://github.com/xfangfang/wiliwili/discussions/355
|
||||
license = lib.licenses.gpl3Only;
|
||||
mainProgram = "wiliwili";
|
||||
maintainers = with lib.maintainers; [ aleksana ];
|
||||
platforms = with lib.platforms; unix ++ windows;
|
||||
# Testing on darwin was blocked due to broken swift
|
||||
# buildInputs should still need some tweaking, but can't be sure
|
||||
badPlatforms = lib.platforms.darwin;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user