tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ipu6-camera-bin: 2022-11-12 -> 2023-02-08
betaboon
2 years ago
62c69e9f
44c59fea
+13
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
firmware
ipu6-camera-bins
default.nix
+13
-3
pkgs/os-specific/linux/firmware/ipu6-camera-bins/default.nix
···
1
{ lib
2
, stdenv
3
, fetchFromGitHub
0
0
0
4
5
# Pick one of
6
# - ipu6 (Tiger Lake)
···
10
11
stdenv.mkDerivation {
12
pname = "${ipuVersion}-camera-bin";
13
-
version = "unstable-2022-11-12";
14
15
src = fetchFromGitHub {
16
owner = "intel";
17
repo = "ipu6-camera-bins";
18
-
rev = "4694ba7ee51652d29ef41e7fde846b83a2a1c53b";
19
-
hash = "sha256-XPT3dbV6Kl1/TEeiQESF4Q4s95hjtiv4VLlqlahQXqE=";
20
};
21
22
sourceRoot = "source/${ipuVersion}";
0
0
0
0
0
0
0
23
24
installPhase = ''
25
runHook preInstall
···
1
{ lib
2
, stdenv
3
, fetchFromGitHub
4
+
, autoPatchelfHook
5
+
, expat
6
+
, zlib
7
8
# Pick one of
9
# - ipu6 (Tiger Lake)
···
13
14
stdenv.mkDerivation {
15
pname = "${ipuVersion}-camera-bin";
16
+
version = "unstable-2023-02-08";
17
18
src = fetchFromGitHub {
19
owner = "intel";
20
repo = "ipu6-camera-bins";
21
+
rev = "276859fc6de83918a32727d676985ec40f31af2b";
22
+
hash = "sha256-QnedM2UBbGyd2wIF762Mi+VkDZYtC6MifK4XGGxlUzw=";
23
};
24
25
sourceRoot = "source/${ipuVersion}";
26
+
27
+
nativeBuildInputs = [
28
+
autoPatchelfHook
29
+
stdenv.cc.cc.lib
30
+
expat
31
+
zlib
32
+
];
33
34
installPhase = ''
35
runHook preInstall