pict-rs: fixes

Changed files
+3 -2
pkgs
servers
web-apps
pict-rs
+3 -2
pkgs/servers/web-apps/pict-rs/default.nix
···
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" \
···
'';
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 ];