pict-rs-proxy/pict-rs-proxy.nix

22 lines
444 B
Nix
Raw Permalink Normal View History

2023-03-10 03:30:31 +00:00
{ lib
, nixosTests
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "pict-rs-proxy";
2024-02-01 23:13:11 +00:00
version = "0.5.0";
2023-03-10 03:30:31 +00:00
src = ./.;
2023-05-25 18:41:40 +00:00
cargoLock.lockFile = ./Cargo.lock;
2023-03-10 03:30:31 +00:00
nativeBuildInputs = [ ];
passthru.tests = { inherit (nixosTests) pict-rs-proxy; };
meta = with lib; {
description = "A simple image hosting service";
homepage = "https://git.asonix.dog/asonix/pict-rs-proxy";
license = with licenses; [ agpl3Plus ];
};
}