mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
edgetpu-compiler: init at 15.0
This commit is contained in:
parent
21e25c659f
commit
c98d1b514e
2 changed files with 60 additions and 0 deletions
|
@ -0,0 +1,58 @@
|
|||
{ autoPatchelfHook
|
||||
, dpkg
|
||||
, fetchurl
|
||||
, lib
|
||||
, libcxx
|
||||
, stdenv
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "edgetpu-compiler";
|
||||
version = "15.0";
|
||||
|
||||
src = fetchurl rec {
|
||||
url = "https://packages.cloud.google.com/apt/pool/${pname}_${version}_amd64_${sha256}.deb";
|
||||
sha256 = "ce03822053c2bddbb8640eaa988396ae66f9bc6b9d6d671914acd1727c2b445a";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoPatchelfHook
|
||||
dpkg
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libcxx
|
||||
];
|
||||
|
||||
unpackPhase = ''
|
||||
mkdir bin pkg
|
||||
|
||||
dpkg -x $src pkg
|
||||
|
||||
rm -r pkg/usr/share/lintian
|
||||
|
||||
cp pkg/usr/bin/edgetpu_compiler_bin/edgetpu_compiler ./bin
|
||||
cp -r pkg/usr/share .
|
||||
|
||||
rm -r pkg
|
||||
'';
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp -r ./{bin,share} $out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command line tool that compiles a TensorFlow Lite model into an Edge TPU compatible file.";
|
||||
homepage = "https://coral.ai/docs/edgetpu/compiler";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ cpcloud ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -4297,6 +4297,8 @@ in
|
|||
|
||||
ecryptfs-helper = callPackage ../tools/security/ecryptfs/helper.nix { };
|
||||
|
||||
edgetpu-compiler = callPackage ../development/libraries/science/robotics/edgetpu-compiler { };
|
||||
|
||||
edid-decode = callPackage ../tools/misc/edid-decode { };
|
||||
|
||||
edid-generator = callPackage ../tools/misc/edid-generator { };
|
||||
|
|
Loading…
Reference in a new issue