pict-rs-aggregator/pict-rs-aggregator.nix
asonix ceace870d7
All checks were successful
continuous-integration/drone/push Build is passing
Bump version
2024-02-01 18:15:16 -06:00

23 lines
470 B
Nix

{ lib
, nixosTests
, protobuf
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "pict-rs-aggregator";
version = "0.5.0";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [ ];
passthru.tests = { inherit (nixosTests) pict-rs-aggregator; };
meta = with lib; {
description = "A simple image hosting service";
homepage = "https://git.asonix.dog/asonix/pict-rs-aggregator";
license = with licenses; [ agpl3Plus ];
};
}