Remove protobuf, no longer needed

This commit is contained in:
asonix 2023-11-10 18:42:21 -06:00
parent 3a0546694f
commit 14deab75d6
2 changed files with 5 additions and 7 deletions

View file

@ -38,7 +38,6 @@
garage
gcc
imagemagick
protobuf
rust-analyzer
rustc
rustfmt

View file

@ -4,7 +4,6 @@
, lib
, makeWrapper
, nixosTests
, protobuf
, rustPlatform
, Security
, stdenv
@ -12,21 +11,21 @@
rustPlatform.buildRustPackage {
pname = "pict-rs";
version = "0.5.0-alpha.20";
version = "0.5.0-beta.1";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
RUSTFLAGS = "--cfg tokio_unstable --cfg uuid_unstable";
nativeBuildInputs = [ makeWrapper ];
nativeBuildInputs = [ stdenv makeWrapper ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
TARGET_CC = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
TARGET_AR = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}ar";
postInstall = ''
wrapProgram $out/bin/pict-rs \
--prefix PATH : "${lib.makeBinPath [ imagemagick ffmpeg_6-full exiftool ]}"