pict-rs: fixes

This commit is contained in:
happysalada 2021-09-29 17:58:20 +09:00 committed by Raphael Megzari
parent f8da79b510
commit 1320843aad

View file

@ -28,7 +28,8 @@ rustPlatform.buildRustPackage rec {
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
buildInputs = [ makeWrapper ] ++ lib.optionals stdenv.isDarwin [ Security ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
postInstall = ''
wrapProgram "$out/bin/pict-rs" \
@ -36,7 +37,7 @@ rustPlatform.buildRustPackage rec {
'';
meta = with lib; {
description = "a simple image hosting service";
description = "A simple image hosting service";
homepage = "https://git.asonix.dog/asonix/pict-rs";
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ happysalada ];