tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
bionic-translation: init at 0-unstable-2025-07-07
Jonas Heinrich
7 months ago
a2d02d3e
c63522c8
+50
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
bi
bionic-translation
package.nix
+50
pkgs/by-name/bi/bionic-translation/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitLab,
5
5
+
mesa,
6
6
+
wayland,
7
7
+
libglvnd,
8
8
+
libbsd,
9
9
+
libunwind,
10
10
+
libelf,
11
11
+
meson,
12
12
+
pkg-config,
13
13
+
ninja,
14
14
+
}:
15
15
+
16
16
+
stdenv.mkDerivation (finalAttrs: {
17
17
+
pname = "bionic-translation";
18
18
+
version = "0-unstable-2025-07-07";
19
19
+
20
20
+
src = fetchFromGitLab {
21
21
+
owner = "android_translation_layer";
22
22
+
repo = "bionic_translation";
23
23
+
rev = "18c65637bf02dba86415dd009036b72f62cbb37d";
24
24
+
hash = "sha256-cqmWT9mbYJRLaX1Ey0lDfRFYM7JXuwayDN4o2WJIAVc=";
25
25
+
};
26
26
+
27
27
+
nativeBuildInputs = [
28
28
+
meson
29
29
+
ninja
30
30
+
pkg-config
31
31
+
];
32
32
+
33
33
+
buildInputs = [
34
34
+
libbsd
35
35
+
libelf
36
36
+
libglvnd
37
37
+
libunwind
38
38
+
mesa
39
39
+
wayland
40
40
+
];
41
41
+
42
42
+
meta = {
43
43
+
description = "Set of libraries for loading bionic-linked .so files on musl/glibc";
44
44
+
homepage = "https://gitlab.com/android_translation_layer/bionic_translation";
45
45
+
# No license specified yet
46
46
+
license = lib.licenses.unfree;
47
47
+
platforms = lib.platforms.all;
48
48
+
maintainers = with lib.maintainers; [ onny ];
49
49
+
};
50
50
+
})