60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
fetchFromGitLab,
|
|
inih,
|
|
lib,
|
|
libdrm,
|
|
libinput,
|
|
libxkbcommon,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
scdoc,
|
|
stdenv,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "buffybox";
|
|
version = "3.2.0-unstable-2024-12-09";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.postmarketos.org";
|
|
owner = "postmarketOS";
|
|
repo = "buffybox";
|
|
fetchSubmodules = true; # to use its vendored lvgl
|
|
rev = "32f4837e836fbb0b820d68c74c3278c925369b04";
|
|
hash = "sha256-d9fa/Zqbm/+WMRmO0hBW83PCTDgaVOAxyRuSTItr9Xs=";
|
|
};
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
];
|
|
|
|
buildInputs = [
|
|
inih
|
|
libdrm
|
|
libinput
|
|
libxkbcommon
|
|
];
|
|
|
|
env.PKG_CONFIG_SYSTEMD_SYSTEMD_SYSTEM_UNIT_DIR = "${placeholder "out"}/lib/systemd/system";
|
|
|
|
strictDeps = true;
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "A suite of graphical applications for the terminal";
|
|
homepage = "https://gitlab.postmarketos.org/postmarketOS/buffybox";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ colinsane ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|