pict-rs: fixes

+3 -2
+3 -2
pkgs/servers/web-apps/pict-rs/default.nix
··· 28 28 PROTOC = "${protobuf}/bin/protoc"; 29 29 PROTOC_INCLUDE = "${protobuf}/include"; 30 30 31 - buildInputs = [ makeWrapper ] ++ lib.optionals stdenv.isDarwin [ Security ]; 31 + nativeBuildInputs = [ makeWrapper ]; 32 + buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 32 33 33 34 postInstall = '' 34 35 wrapProgram "$out/bin/pict-rs" \ ··· 36 37 ''; 37 38 38 39 meta = with lib; { 39 - description = "a simple image hosting service"; 40 + description = "A simple image hosting service"; 40 41 homepage = "https://git.asonix.dog/asonix/pict-rs"; 41 42 license = with licenses; [ agpl3Plus ]; 42 43 maintainers = with maintainers; [ happysalada ];