mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
ivsc-firmware: init at 2022-11-02
This commit is contained in:
parent
9b4f6d4d92
commit
6b33857238
41
pkgs/os-specific/linux/firmware/ivsc-firmware/default.nix
Normal file
41
pkgs/os-specific/linux/firmware/ivsc-firmware/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "ivsc-firmware";
|
||||
version = "unstable-2022-11-02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "ivsc-firmware";
|
||||
rev = "29c5eff4cdaf83e90ef2dcd2035a9cdff6343430";
|
||||
hash = "sha256-GuD1oTnDEs0HslJjXx26DkVQIe0eS+js4UoaTDa77ME=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/lib/firmware/vsc
|
||||
cp --no-preserve=mode --recursive ./firmware/* $out/lib/firmware/vsc/
|
||||
install -D ./LICENSE $out/share/doc
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Firmware binaries for the Intel Vision Sensing Controller";
|
||||
homepage = "https://github.com/intel/ivsc-firmware";
|
||||
license = licenses.issl;
|
||||
sourceProvenance = with sourceTypes; [
|
||||
binaryFirmware
|
||||
];
|
||||
maintainers = with maintainers; [
|
||||
hexa
|
||||
];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -25877,6 +25877,8 @@ with pkgs;
|
||||
ipu6-camera-bin = ipu6ep-camera-bin;
|
||||
};
|
||||
|
||||
ivsc-firmware = callPackage ../os-specific/linux/firmware/ivsc-firmware { };
|
||||
|
||||
iputils = hiPrio (callPackage ../os-specific/linux/iputils { });
|
||||
# hiPrio for collisions with inetutils (ping)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user