Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
968 B
Nix
51 lines
968 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
mesa,
|
|
wayland,
|
|
libglvnd,
|
|
libbsd,
|
|
libunwind,
|
|
libelf,
|
|
meson,
|
|
pkg-config,
|
|
ninja,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bionic-translation";
|
|
version = "0-unstable-2025-07-07";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "android_translation_layer";
|
|
repo = "bionic_translation";
|
|
rev = "18c65637bf02dba86415dd009036b72f62cbb37d";
|
|
hash = "sha256-cqmWT9mbYJRLaX1Ey0lDfRFYM7JXuwayDN4o2WJIAVc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libbsd
|
|
libelf
|
|
libglvnd
|
|
libunwind
|
|
mesa
|
|
wayland
|
|
];
|
|
|
|
meta = {
|
|
description = "Set of libraries for loading bionic-linked .so files on musl/glibc";
|
|
homepage = "https://gitlab.com/android_translation_layer/bionic_translation";
|
|
# No license specified yet
|
|
license = lib.licenses.unfree;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ onny ];
|
|
};
|
|
})
|