pict-rs-aggregator/pict-rs-aggregator.nix

23 lines
477 B
Nix
Raw Permalink Normal View History

2023-03-10 03:49:22 +00:00
{ lib
, nixosTests
, protobuf
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "pict-rs-aggregator";
2023-11-13 23:10:43 +00:00
version = "0.5.0-beta.2";
2023-03-10 03:49:22 +00:00
src = ./.;
2023-05-25 18:54:28 +00:00
cargoLock.lockFile = ./Cargo.lock;
2023-03-10 03:49:22 +00:00
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 ];
};
}