pict-rs/pict-rs.nix

41 lines
925 B
Nix
Raw Permalink Normal View History

2023-03-10 01:54:03 +00:00
{ exiftool
, ffmpeg6_pict-rs
, imagemagick7_pict-rs
2023-03-10 01:54:03 +00:00
, lib
, makeWrapper
, nixosTests
, rustPlatform
, Security
, stdenv
}:
rustPlatform.buildRustPackage {
pname = "pict-rs";
2024-04-15 20:31:31 +00:00
version = "0.5.13";
2023-03-10 01:54:03 +00:00
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
2023-03-10 01:54:03 +00:00
2023-11-11 00:42:21 +00:00
nativeBuildInputs = [ stdenv makeWrapper ];
2023-03-10 01:54:03 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2023-12-13 00:02:54 +00:00
RUSTFLAGS = "--cfg tokio_unstable";
2023-11-11 00:42:21 +00:00
TARGET_CC = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
TARGET_AR = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}ar";
2023-03-10 01:54:03 +00:00
postInstall = ''
wrapProgram $out/bin/pict-rs \
--prefix PATH : "${lib.makeBinPath [ imagemagick7_pict-rs ffmpeg6_pict-rs exiftool ]}"
2023-03-10 01:54:03 +00:00
'';
passthru.tests = { inherit (nixosTests) pict-rs; };
meta = with lib; {
description = "A simple image hosting service";
homepage = "https://git.asonix.dog/asonix/pict-rs";
license = with licenses; [ agpl3Plus ];
};
}