warriors-names/warriors-names.nix

22 lines
447 B
Nix
Raw Normal View History

2024-02-12 01:20:09 +00:00
{ lib
, nixosTests
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "warriors-names";
2024-02-12 01:20:56 +00:00
version = "0.2.3";
2024-02-12 01:20:09 +00:00
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [ ];
passthru.tests = { inherit (nixosTests) warriors-names; };
meta = with lib; {
description = "A simple image hosting service";
homepage = "https://git.asonix.dog/asonix/warriors-names";
license = with licenses; [ agpl3Plus ];
};
}