pict-rs: fixes

This commit is contained in:
happysalada
2021-09-30 21:32:25 +09:00
committed by Raphael Megzari
parent f8da79b510
commit 1320843aad
+3 -2
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 ];